@charset "utf-8";
/*@font-face {
	font-family: 'Glyphicons Halflings';
	src: url(../fonts/glyphicons-halflings-regular.eot);
	src: url(../fonts/glyphicons-halflings-regular.eot) format('embedded-opentype'), url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(../fonts/glyphicons-halflings-regular.woff) format('woff'), url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')
}
.glyphicon {
	position: relative;
	top: 1px;
	display: inline-block;
	font-family: 'Glyphicons Halflings';
	font-style: normal;
	font-weight: 400;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}*/


/**初始**/
* {outline: 0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box}
html {font: normal 14px "Microsoft YaHei";-webkit-text-size-adjust: 100%; font-size: 16px;}
body {padding: 0;margin: 0 auto;font-size: 14px;color: #666;background-color: #fff;font-family: "Microsoft YaHei";
-webkit-text-size-adjust: none;
/*取出点击出现半透明的灰色背景*/
-webkit-tap-highlight: rgba(0,0,0,0); 
/*控制内容的可选择性*/
-webkit-user-select: none; 
-ms-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
user-select: none;
}
input[type="button"],
input[type="submit"],
input[type="reset"] {-webkit-appearance: none;}
ul, 
li, 
form, 
dl, 
dt, 
dd, 
div, 
ol,
figure,
aside{padding: 0;margin: 0;}
.ul,
li {list-style: none;}
table {border-collapse: collapse;border-spacing: 0}
table td {border-collapse: collapse;font-size: 14px;}
select, input, textarea {font-size: 14px;color: #333;border-radius: 0;-webkit-border-radius: 0;font-family: "Microsoft YaHei";}
img{border: none;max-width: 100%;vertical-align: middle;}
a {color: #333;text-decoration: none;noline:-webkit-tap-highlight-color:rgba(0,0,0,0);transition: all .5s;}  
a:hover {color: #47a0ec;text-decoration: none;}
a:focus {color: #333;outline: none;-moz-outline: none;}
a:active {color: #333;}
pre{
	white-space:pre-wrap;
	white-space:-moz-pre-wrap;
	white-space:-pre-wrap;
	white-space:-o-pre-wrap;
	word-wrap:break-word;
	margin:0;
	font-family: "Microsoft YaHei";
	text-align:justify;
	text-justify:inter-ideograph;
	}
.posR{ position:relative;}
.clear {clear: both;height: 0px;overflow: hidden;zoom: 0;}
.clearfix {*zoom:1;}/*IE/7/6*/
.clearfix:after { content:"\200B"; display:block; height:0; clear:both; } 

.dot{display: block;white-space: nowrap; text-overflow: ellipsis;overflow: hidden;}
/*2行文本省略号*/
.dot2 {display: -webkit-box;display: box;overflow: hidden;text-overflow: ellipsis;word-break: break-all;-webkit-box-orient: vertical;-webkit-line-clamp: 2;}
/*3行文本省略号*/
.dot3 {display: -webkit-box;display: box;overflow: hidden;text-overflow: ellipsis;word-break: break-all;-webkit-box-orient: vertical;-webkit-line-clamp: 3;}
/*垂直居中,容器设置宽高*/
.ycenter {align-items: center;
	display: -webkit-box; /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    display: -moz-box; /* 老版本语法: Firefox (buggy) */
    display: -ms-flexbox; /* 混合版本语法: IE 10 */
    display: -webkit-flex; /* 新版本语法: Chrome 21+ */
    display: flex; /* 新版本语法: Opera 12.1, Firefox 22+ */}
/*水平居中,容器设置宽高*/
.xcenter {justify-content: center;
	display: -webkit-box; /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    display: -moz-box; /* 老版本语法: Firefox (buggy) */
    display: -ms-flexbox; /* 混合版本语法: IE 10 */
    display: -webkit-flex; /* 新版本语法: Chrome 21+ */
    display: flex; /* 新版本语法: Opera 12.1, Firefox 22+ */}
/*盒子布局*/
.flexbox{display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;}

/*弹性布局水平垂直居中 兼容性高*/
.xycenterbox{
	display: -webkit-box; /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    display: -moz-box; /* 老版本语法: Firefox (buggy) */
    display: -ms-flexbox; /* 混合版本语法: IE 10 */
    display: -webkit-flex; /* 新版本语法: Chrome 21+ */
    display: flex; /* 新版本语法: Opera 12.1, Firefox 22+ */
	-webkit-box-pack: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    align-items: center;
}
/*弹性布局水平居中 兼容性高*/
.xcenterbox{
	display: -webkit-box; /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    display: -moz-box; /* 老版本语法: Firefox (buggy) */
    display: -ms-flexbox; /* 混合版本语法: IE 10 */
    display: -webkit-flex; /* 新版本语法: Chrome 21+ */
    display: flex; /* 新版本语法: Opera 12.1, Firefox 22+ */
    -webkit-box-pack: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
}
/*弹性布局垂直居中 兼容性高*/
.ycenterbox{
	display: -webkit-box; /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    display: -moz-box; /* 老版本语法: Firefox (buggy) */
    display: -ms-flexbox; /* 混合版本语法: IE 10 */
    display: -webkit-flex; /* 新版本语法: Chrome 21+ */
    display: flex; /* 新版本语法: Opera 12.1, Firefox 22+ */
    -webkit-box-align: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    align-items: center;
}

.Ispic{ background-repeat:no-repeat; background-position:center center; background-size:cover;}

:after, :before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}
.nM{ margin:0;}
.nP{ padding:0;}
*::-webkit-input-placeholder{ color: #999;}    /* 使用webkit内核的浏览器 */
*:-moz-placeholder{ color: #999;}                  /* Firefox版本4-18 */
*::-moz-placeholder{ color: #999;}                  /* Firefox版本19+ */
*:-ms-input-placeholder{ color: #999;}           /* IE浏览器 */
/**字体大小**/
.fz_24{ font-size:24px;}
.fz_20{ font-size:20px;}
.fz_18{ font-size:18px;}
.fz_16{ font-size:16px;}
.fz_14{ font-size:14px;}
.fz_12{ font-size:12px;}
@media(max-width:1240px){
	.fz_24{ font-size:22px;}
}
@media(max-width:1024px){
	.fz_24{ font-size:20px;}
	.fz_18{ font-size:16px;}
}
@media(max-width:768px){
	.fz_24{ font-size:18px;}
	.fz_18{ font-size:14px;}
}
@media(max-width:488px){
	.fz_24{ font-size:16px;}
}
/**初始 End**/

.auto{margin: 0 auto;width: 100%;padding-left: 80px;padding-right: 80px;clear: both;}
@media(max-width:1640px){
	.auto{ padding-left: 60px; padding-right: 60px;}
}
@media(max-width:1366px){
	.auto{ padding-left: 40px; padding-right: 40px;}
}
@media(max-width:1240px){
	.auto{ padding-left: 30px; padding-right: 30px;}
}
@media(max-width:1024px){
	.auto{padding-left: 15px;padding-right: 15px;}
}

.index-tit{text-align: center;padding: 60px 0 38px;position: relative;}
.index-tit2{
	text-align: center;
    padding: 120px 0 60px;
}
.index-tit2 h3{
	font-size: 48px;
    font-weight: 700;
    font-family: Arial,helvetica neue,Helvetica,sans-serif;
    color: #e74a45;
    text-transform: uppercase;
}
.index-tit2 h4{
	font-size: 30px;
    font-family: microsoft jhenghei,microsoft yahei,tahoma;
    color: #000;
    margin: 20px 0;
    color: #e74a45;
}
.index-tit2 p{
	color: #878787;
    line-height: 2;
    width: 68%;
    margin: 0 auto;
}
.list-solo{
	overflow: hidden;
    padding-bottom: 80px;
}
.list-solo li{
	float: left;
    width: 20%;
    text-align: center;
    list-style:none;
}
.list-solo li a{
	display:block;
	margin: 5px;
}
.list-solo li .ico{
	display: inline-block;
    width: 95px;
    height: 95px;
    border: 4px solid #eaeaea;
    border-radius: 50%;
    margin-bottom: 20px;
    -webkit-transition: .3s;
    transition: .3s;
}
.list-solo li i{
	display: block;
    width: 100%;
    height: 100%;
    line-height: 84px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center center;
}
.list-solo li i img{
	vertical-align: middle;
}
.list-solo li .s2{
	display:none;
}
.list-solo li h4{
	font-size: 12px;
	color: #686868;
	text-transform: uppercase;
	margin-bottom: 0;
	margin-top: 0;
	font-weight:  500;
}
.list-solo li p{
	margin-top: 5px;
	font-size: 18px;
	color: #000;
	margin-bottom: 5px;
}
.list-solo a:hover span{
	background-color: #e74a45;
    border-color: #e74a45;
}
.list-solo a:hover .s1{display:none;}
.list-solo a:hover .s2{
	display: inline-block;
}
.index-tit .line{ width: 28px; height: 5px; margin: 0 auto; background: #E74A45; position: absolute; top: 0; left: 50%; margin-left: -14px;}
.index-tit>span{display: block;line-height: 1;}
.index-tit .cn{padding-top: 20px;font-size: 28px;color: #111;line-height: 50px;}
.index-tit .cn em{ font-style: normal; color: #E74A45;}
.index-tit .en{font-family: Arial;font-size: 12px;color: #999;text-transform: uppercase;}
.index-tit .en em{ font-style: normal; font-weight:300; padding-left: 10px;}
.index-tit .jx{font-family: Arial;font-size: 12px;color: #999;margin: 10px 0;}
@media(max-width:1240px){
	.index-tit{padding: 45px 0 22px;}
	.index-tit>span{ font-size: 24px;}
	.index-tit .cn{ padding-top: 15px;}
}
@media(max-width:1000px){
	.index-tit{padding: 35px 0 19px;}
	.index-tit>span{ font-size: 20px;}
	.index-tit .cn{ padding-top: 10px;}
	.index-tit .jx{line-height:2em;}
}

.index-more{display: block;text-align: center;padding: 60px 0 80px;}
.index-more a{ display: inline-block; font-size: 18px; color: #E74A45; border:1px solid #E74A45; padding: 8px 24px; line-height: 0.95;}
.index-more a:hover{ background: #E74A45; color: #fff;}
@media(max-width:1240px){
	.index-more{ padding: 40px 0;}
	.index-more a{font-size: 16px;}
}
@media(max-width:1000px){
	.index-more{ padding: 30px 0;}
	.index-more a{font-size: 14px;}
}

.pic-list{ overflow: hidden;min-height: 400px;}
.pic-list .ul{ margin: 0 -10px;}
.pic-list li{ float: left; width: 33.3334%; padding: 10px;}
.pic-list li .li-inner{background:#fff;padding-bottom:20px;}
.pic-list li .pic{ overflow: hidden; position: relative;}
.pic-list li .pic .href{ display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2;	}
.pic-list li .Ispic{ display: block; /* padding-bottom: 67%; */}
.pic-list li .word{ padding: 0 5%; color: #333; font-size: 14px; text-align: center; line-height: 1.25;}
.pic-list li .word h3{ font-weight: normal; margin: 15px 0 10px; font-size: 15px;}
.pic-list li .word h3 a{ color: #333;}
.pic-list li .word h3 a:hover{ color: #E74A45;}
.pic-list li .word>span{ display: block;}
.pic-list li .word figure{ color: #999; font-size: 12px; line-height: 1.85; height:5.55em; overflow:hidden;}
.pic-list li .layer{ position: absolute; bottom:0; width: 100%; height: 100%; left: 0; overflow: hidden;
    background: rgba(0, 0, 0, 0.5) !important; /* IE无效，FF有效 */filter: alpha(opacity=50); opacity: 0;}
.pic-list li .layer figure{ padding: 4% 8%; text-align: left; position: absolute; bottom: 0; left: 0; width: 100%; line-height: 1.85; font-size: 14px; color: #fff; opacity: 1;}
.pic-list li .Ispic{ /* padding-bottom: 58%; */ padding-bottom: 16.35rem;}
@media (min-width:1367px) {
	.pic-list li .Ispic{ padding-bottom: 20rem;}
}
@media(max-width:1000px){
	.pic-list li{ padding: 5px;}
}
@media(max-width:767px){
	.pic-list li{width: 50%;}
	.pic-list li .word figure{display: block;white-space: nowrap; text-overflow: ellipsis;overflow: hidden;}
}
@media(max-width:640px){
	.pic-list .ul{ margin: 0;}
	.pic-list li{width: 100%; padding: 10px 0;}
	.pic-list li .Ispic{padding-bottom: 10.8rem;}
	.pic-list li .word figure {height:auto;}
}
.pic-list1 li .word{ text-align: left; padding: 0;}
.pic-list1 li .word h3{ margin-bottom: 0;line-height: 1.85; margin-top: 15px;}

.link-list{overflow: hidden;}
.link-list .ul{ margin: 0 -2%;}
.link-list li{ margin:1% 2%; float: left; width: 12.6667%;}
.link-list li .Ispic{
	padding-bottom:57%; display: block;position: relative;
	filter: gray;
    -webkit-filter: grayscale(100%);
    opacity: .5;
    -ms-filter: 'alpha(opacity= 50)';
    filter: alpha(opacity=50);
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-filter: grayscale(1);
}
.link-list li:hover .Ispic{
	    opacity: 1;
    -ms-filter: 'alpha(opacity= 100)';
    filter: alpha(opacity=100);
    filter: none;
    -webkit-filter: grayscale(0%);
}
.link-list li .layer{ position: absolute; top: 0; left: 0; width: 100%; height: 100%;  background: rgba(0, 0, 0, 0.4) !important;filter: alpha(opacity=50); display: flex; align-items: center; opacity: 0;}
.link-list li .layer figure{ text-align: center; position: relative ;z-index: 1; color: #fff; padding: 15px;}
.link-list li h3{ font-size: 14px; margin: 10px 0 0; font-weight: normal;}
.link-list li h3 a{ color: #999; text-align: center;}
.link-list li .Ispic:hover .layer{ opacity: 1;}
@media(max-width:1240px){
	.link-list li{ width: 16%;}
}
@media(max-width:1024px){
	.link-list li{ width: 21%;}
}
@media(max-width:767px){
	.link-list li{ width: 29.3334%;}
}

.popup1{position: fixed;top: 0;left: 0;z-index: 99;background:#000;background:rgba(0, 0, 0, 0.5) none repeat scroll 0 0;filter:Alpha(opacity=50);width: 100%;height: 100%;display: none;}
.popup-table-type{ display: table;  text-align: center; width: 100%; height: 100%;}
.popup-table-cell{ display: table-cell; vertical-align: middle; height: 100%; width: 100%;}
.popup-container{box-shadow: 0 0 27px 29px rgba(0,0,0,0.11);border-radius: 20px;background: #f6f6f6 url(../images/popup_bg.jpg) no-repeat center top;max-width:500px;width: 90%;height: 315px;margin:auto;padding: 24px;position: relative;}
.popup1 .closed{ position: absolute;top: 27px; right: 15px; cursor: pointer;}
.popup1 .closed:before{ content: "×"; font-family: "宋体"; font-size: 22px; color: #999;  }
.popup1 .form{width: 220px;display: block!important;}
.popup1 .form .tit{ color: #E74A45; font-size: 20px; padding-bottom: 20px; line-height: 1;}
.popup1 .form dl{ padding: 10px 0;}
.popup1 .form dl .text,
.popup1 .form dl select{ background: #fff; border: 1px solid #ededed; line-height: 33px; height: 35px; display: block; padding: 0 10px; width: 100%;}
.popup1 .form .btns{ text-align: center; padding-top: 23px;}
.popup1 .form .btn{ display: inline-block; width: 130px; height: 35px; line-height: 35px; color: #fff; background: #E74A45; border-radius: 35px; font-size: 14px; cursor: pointer; border: none; text-align: center;}



@media(max-width:500px){
.popup1 .form{width: 100%;}
.popup-container{
    background: #f6f6f6;
}
}

.index-xm01,.news_main{background: #ffffff;overflow:  hidden;}
.news_main{padding-bottom:80px;}
.lmfl{
    margin-bottom: 30px;
}
.lmfl ul{
    text-align:  center;
}
.lmfl ul li{
    list-style:  none;
    display: inline-block;
    width: 90px;
    line-height: 30px;
    margin: 0 5px;
	border: 1px solid #ffffff;
}
.lmfl ul li a{display:  block;}
.lmfl ul li.active a,.lmfl ul li.on a,.lmfl ul li:hover a,.lmfl ul li.hover a{
    background:  #E74A45;
    color:  #fff;
}
.in-menu2 ul li{width: 60px;}


.products-list {
	min-height: 430px;
	margin: 20px 0 60px;
}

.products-list .item {
	width: -moz-calc(25% - 20px);
	width: -webkit-calc(25% - 20px);
	width: calc(25% - 20px);
	margin-bottom: 20px
}

.products-list .item .main {
	width: 100%;
	line-height: 22px;
	background-color: #fff;
	padding: 20px 25px;
	left: 0;
	bottom: -90px
}

.products-list .item .main .left {
	width: 72%
}

.products-list .item .main .name {
	font-size: 16px
}

.products-list .item .main .cate {
	font-size: 14px;
	color: #aaa
}

.products-list .item .main .right {
	line-height: 44px
}

.products-list .item:hover .box {
	box-shadow: 0 5px 10px rgba(0,0,0,.2)
}

.products-list .item:hover .main {
	bottom: 0
}
.fl {
	float: left
}

.fr {
	float: right
}
.relative {
	position: relative;
	z-index: 1
}
.absolute {
	position: absolute;
	z-index: 1
}
.over {
	overflow: hidden
}
.max-w100 {
	max-width: 100%;
	width: 100%;
}

.max-h100 {
	max-height: 100%
}
.trans {
	-webkit-transition: all 300ms ease 0s;
	-moz-transition: all 300ms ease 0s;
	-ms-transition: all 300ms ease 0s;
	-o-transition: all 300ms ease 0s;
	transition: all 300ms ease 0s
}


.list-1 {
	margin: 0 -22px;
	overflow: hidden
}

.list-1 li {
	float: left;
	width: 25%;
	padding: 0 22px;
	margin-bottom: 0;
	list-style:  none;
}

.list-1 .img-cover {
	padding-top: 56%;
	position: relative;
	display: block;
	margin-bottom: 20px
}

.list-2 b,.news-list b,.list-1 b {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
	text-align: center;
	width: 106px;
	height: 106px;
	border-radius: 50%;
	background: rgba(231,74,69,.7) url(../images/ic1.png) no-repeat 50%;
	opacity: 0;
	-ms-filter: 'alpha(opacity= 0)';
	filter: alpha(opacity=0);
	-webkit-transition: .3s;
	transition: .3s;
	z-index: 20
}

.list-1 .img-cover:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background-color: rgba(0,0,0,.2);
	opacity: 0;
	-ms-filter: 'alpha(opacity= 0)';
	filter: alpha(opacity=0);
	-webkit-transition: .3s;
	transition: .3s
}

.news-list a:hover b,.list-2 a:hover b,.list-1 a:hover b {
	opacity: 1
}

.list-1 a:hover:after {
	opacity: 1;
	-ms-filter: 'alpha(opacity= 100)';
	filter: alpha(opacity=100)
}

.list-1 .con {
	padding: 10px 0
}

.list-1 h3 {
	margin-bottom: 4px;
	margin-top: 0;
	font-weight: 500;
}

.list-1 h3 a {
	color: #000;
	font-size: 18px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	display: block
}

.list-1 h3 a:hover {
	color: #e74a45
}

.list-1 h4 {
	font-size: 14px;
	color: #a5a4a4;
	margin-bottom: 10px;
	font-weight: 500;
}

.list-1 span {
	color: #a5a4a4
}

.list-1 p {
	color: #686868;
	line-height: 2;
	max-height: 80px;
	min-height: 80px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	margin-bottom:  0;
}
.t2 {
	text-align: center;
	padding-bottom: 45px
}
.index-section4{
}

.faItem{float: left;width: 25%;text-align: center;}
.faItem .txt{display: inline-block;text-align: left;color:#fff;vertical-align: middle;margin-left: 5px;}
.faItem .txt .tit{font-size: 18px;margin-bottom: 0;margin-top: 1em;}
.faItem .txt .info{margin-top:0;}
.foot_bz{
    background: #5f5f5f;
}

.x-btn3 {
	position: absolute;
	right: -30px;
	bottom: 20px;
	width: 30px;
	height: 30px;
	background: url(../images/x.png) no-repeat 50%;
	opacity: 0;
	-ms-filter: 'alpha(opacity= 0)';
	filter: alpha(opacity=0)
}
.quotes-box {
	position: fixed;
	bottom: -457px;
	width: 100%;
	z-index: 99999;
	-webkit-transition: .3s;
	transition: .3s;
}

.quotes-box.show-v1 {
	bottom: -320px
}

.quotes-box .hd {
	background: url(../images/bg1.png) repeat-x left bottom;
	text-align: center
}

.quotes-box .hd * {
	vertical-align: bottom
}

.quotes-box .hd h3 {
	font-size: 36px;
	letter-spacing: 6px;
	color: #fff;
	font-weight: 700;
	line-height: 65px;
	margin-left: 30px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
	margin-bottom:  0;
	margin-top:  0;
}

.quotes-box .hd .m-show {
	display: none
}

.quotes-box .hd .open {
	width: 50px;
	height: 50px;
	display: inline-block;
	background: url(../images/ar3.png) no-repeat 50%;
	vertical-align: middle;
	position: relative;
	top: 2px
}

.quotes-box.show-me {
	bottom: 0!important
}

.show-me .hd .open {
	background-image: url(../images/ar2.png)
}

.quotes-box .bd {
	overflow: hidden;
	height: 320px;
	background: url(../images/bg1.png) repeat left bottom
}

.quotes-box .bd .wp {
	background-color: #fff;
	overflow: hidden
}

.quotes-box .bd .con {
	float: left
}

.quotes-box .bd .s1 {
	width: 306px;
	text-align: center
}

.quotes-box .bd .s1,.quotes-box .bd .s3 {
	height: 320px;
	line-height: 320px
}

.quotes-box .bd .s2 {
	width: 510px;
	border-left: 1px solid #e8e7e7;
	border-right: 1px solid #e8e7e7;
	height: 320px;
	padding-left: 74px;
	padding-right: 160px;
	position:  relative;
}

.quotes-box .bd .s3 {
	text-align: right;
	width: 380px
}

.quotes-box .s2 h3 {
	font-size: 18px;
	font-weight: 700;
	color: #484848;
	padding-top: 30px;
	margin-bottom: 20px;
	margin-top: 0;
}

.quotes-box .s3 {
	position: relative
}

.res {
	top: 0;
	right: 136px;
	width: 68px;
	text-align: center;
	position: absolute
}

.res span {
	text-align: center;
	font-size: 50px;
	color: #e74a45;
	font-weight: 700
}

.yz-btn {
	width: 130px;
	height: 36px;
	color: #fff;
	line-height: 36px;
	background-color: #e74a45;
	text-align: center;
	border: 0;
	cursor: pointer;
	float: right;
	outline: 0
}

.quotes-box li:before,.quotes-box li:after {
	content: '.';
	display: block;
	overflow: hidden;
	visibility: hidden;
	font-size: 0;
	line-height: 0;
	width: 0;
	height: 0
}

.quotes-box li:after {
	clear: both
}
.pr{position: relative;}
.quotes-box li {
	zoom: 1;
	list-style:  none;
}

.quotes-box .s2 li {
	margin-bottom: 14px
}

.quotes-box .s2 .inp {
	border: 1px solid #ddd;
	height: 36px;
	width: 100%;
	padding: 0 10px;
	background: #f3f3f3 url(../images/xing.png) no-repeat 8px 50%;
	padding-left: 20px
}

.quotes-box .s2 li.last {
	display: none;
	width: 100%
}

.quotes-box .s2 li.last .sub {
	width: 100%;
	height: 36px;
	color: #fff;
	line-height: 36px;
	background-color: #e74a45;
	text-align: center;
	border: 0;
	cursor: pointer
}

.quotes-box .s2 .yz {
	width: 135px;
	float: left
}

.quotes-box .g1 {
	color: #969696;
	color: #656565;
	padding-left: 20px;
	background: url(../images/xing.png) no-repeat 8px 50%;
	margin-top:  0;
	margin:  0;
}

.quotes-box .s2 select {
	border: 1px solid #ddd;
	height: 36px;
	color: #656565;
	width: 132px;
	background: #f3f3f3 url(../images/xing.png) no-repeat 8px 50%;
	padding-left: 20px
}

.quotes-box .bd .con-m {
	display: none;
	text-align: center;
	padding-bottom: 10px;
	clear: both
}

.quotes-box .bd .con-m h3 {
	font-size: 22px;
	padding-top: 20px
}

.quotes-box .bd .con-m span {
	font-size: 30px;
	color: #e74a45;
	font-weight: 700
}
.x-btn6 {
	position: absolute;
	right: 20px;
	bottom: 338px;
	width: 30px;
	height: 30px;
	background: url(../images/btm_close.png) no-repeat 50%
}
.wp {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	position:  relative;
}


.validate-error {
	-webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
	width: auto!important;
	position: absolute;
	left: 0;
	color: #fff;
	background-color: #f1433c;
	white-space: nowrap;
	padding: 3px 8px!important;
	color: #fff;
	text-align: center;
	border-radius: 4px;
	font-size: 12px;
	line-height: 20px;
	top: -30px
}
.validate-error:after{
	content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-color: transparent;
    border-style: solid;
    border-top-color: #f1433c;
    font-size: 16px;
}

.list-f5 .validate-error {
	left: 120px;
	top: -30px;
	font-size: 12px
}
.validate-error {
	display: none;
}

.show-error .validate-error {
	opacity: 1;
	visibility: visible;
	top: -30px;
	display: block
}
.quotes-box.show-me .x-btn3 {
	opacity: 1;
	-ms-filter: 'alpha(opacity= 100)';
	filter: alpha(opacity=100)
}
.show-me .x-btn6{
	display: none;
}

.ban_yue{width: 227px;right: 43px;top: 98px;height: 540px;background: #fff;float:  left;border:  1px solid #ededed;}
.yue_box{width: 175px;margin:0 auto;padding-top: 10px;}
.yue_box h4{font-size: 14px;color:#E74A45;padding-bottom: 0;}
.yue_box input[type=text],.box-siz,.yItem select{box-sizing: border-box;}
.yue_box input[type=text]{width: 100%;border:1px solid #ababab;height: 29px;line-height: 29px;padding:0 5px;border-radius:3px;font-family: "微软雅黑";}
.yItem{margin-bottom: 10px;}
.yItem select{width: 48%;border:1px solid #ababab;height: 29px;line-height: 29px;padding:0 5px;border-radius:3px;}
.ybtns{height: 36px;line-height: 36px;background:#E74A45;color: #fff;display: block;text-align: center;color: #fff;font-size: 16px;width: 100%;margin-top: 15px;border:  none;cursor:  pointer;}
.cred{color: #E74A45;font-style:  normal;}
.f14{font-size: 14px;}
.yue_num{padding:8px 0;background: url(../images/y_g.png) no-repeat left bottom;background-size: 100% auto;margin-top:6px;text-align:  center;}
.c99{color: #999;}
.yueslide{margin-top:10px}
.yue_l{padding-top: 5px;line-height: 1.7;}
.yue_l li{margin-top:3px; position: relative;padding-left: 15px;font-size: 13px;}
.yue_l li:after{content: '';display: block;position: absolute;left:0;top:8px;width: 7px;height: 7px;background: #E74A45;border-radius: 50%;}


#products-detail {
	margin-top: 50px;
	margin-bottom: 100px
}
#products-detail .left {
	width: 25%
}
#products-detail .left .product-info {
	padding-bottom: 40px;
	border-bottom: 1px solid #f6f6f6
}
#products-detail .left .product-info .name {
	line-height: 38px;
	font-size: 28px;
	color: #111
}
#products-detail .left .product-info .category {
	font-size: 14px;
	color: #aaa
}
#products-detail .left .product-info .brief {
	line-height: 28px;
	font-size: 14px;
	color: #999
}
#products-detail .left .similar-list {
	margin-top: 50px
}
#products-detail .left .similar-list .item {
	width: -moz-calc(48.75% - 10px);
	width: -webkit-calc(48.75% - 10px);
	width: calc(48.75% - 10px);
	margin-bottom: 10px
}
#products-detail .right {
	width: 71.875%;
	padding: 50px 4.6875%
}
.bgf8 {
	background-color: #f8f8f8
}


.item-banner{
	position: relative;
}

.item-banner-text{
	width: 100%;
	position: absolute;
	top: 50%;
	left: 0;
	text-align: center;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	z-index: 3;
}

.item-banner-text h3{
	font-size: 32px;
	color: #c7c7c7;
	margin-bottom: 16px;
}

.item-banner-text p{
	font-size: 16px;
	text-transform: uppercase;
	color: #aba9a9;
}
/* 商务合作 */
div.business{
	padding-top: 60px;
}

.business_btn{
	font-size: 0;
	text-align: center;
}

.business_btn a{
	display: inline-block;
	width: 110px;
	height: 40px;
	border-radius: 5px;
	background: #f5f5f5;
	font-size: 14px;
	color: #333333;
	line-height: 40px;
	margin: 0 5px;
}

.business_btn a.on,.business_btn a:hover{
	color: #fff;
	background: #dd4f50;
}

.cooper{
	margin-top: 80px;
}

.title-box{text-align: center;}

.title-box h3{
	font-size: 32px;
	color: #333333;
	margin-bottom: 10px;
}

.title-box p{
	font-size: 14px;
	color: #999999;
	text-transform: uppercase;
}

.list{overflow: hidden;}

.cooper-list{margin-top: 35px;}

.cooper-list li{
	float: left;
	width: 386px;
	height: 277px;
	background: #f5f5f5;
	margin-right: 20px;
	margin-bottom: 20px;
	padding: 30px 20px 0 26px;
	border: 1px solid transparent;
	transition: all .5s;
}

.cooper-list li:hover{
	border: 1px solid #dd4f50;
}

.cooper-list li:nth-child(3n){margin-right: 0;}

.cooper-list li h3{
	font-size: 20px;
	color: #333333;
	margin-bottom: 16px;
}

.cooper-list li p{
	font-size: 14px;
	color: #999999;
}

.cooper-list li a{
	display: block;
	width: 97px;
	height: 36px;
	background: #2d2c2c;
	font-size: 14px;
	color: #fff;
	line-height: 36px;
	text-align: center;
	margin-top: 25px;
}

.cooper-list li a:hover{background: #dd4f50;}

.line-b{
	height: 1px;
	background: #101010;
	margin: 30px 0 10px;
}

.lianxi p{
	font-size: 14px;
	color: #333333 !important;
	margin-bottom: 6px;
	padding-left: 24px;
	background-position: left center;
	background-repeat: no-repeat;
}
/*block2*/
.block2 {
	padding-top: 60px;
	height: 430px;
	background: #f3f3f3;
	margin-top: 80px;
}

.block2 .blockbox {
	height: 620px;
}

.block2 .imgbox {
	position: relative;
	float: left;
	width:534px;
	height: 620px;
	background: #000;
}

.block2 .imgbox .bd {
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.block2 .imgbox .bd li {
	height: 620px;
}

.block2 .imgbox .bd li .lileft {
	width: 300px;
	height:620px;
	background: rgba(255,0,0,0.5);
	display: none;
}

.block2 .imgbox .bd li .imgbox1 {
	display: block;
	margin: 0 auto;
	padding-top: 60px;
	height: 300px;
}

.block2 .imgbox .bd li .imgbox1 img {
	display: block;
	margin: 0 auto;
}

.block2 .imgbox .bd li .txtbox1 {
	margin: 0 auto;
	margin-top: 103px;
	margin-left:63px;
	padding-top: 52px;
	background: url(../images/line2.png) no-repeat top left;
	color: #fff;
	font-size: 16px;
	font-family: arial;
	line-height: 22px;
}

.block2 .imgbox .hd {
	position: absolute;
	bottom: 35px;
	left: 0;
	width: 100%;
	height: 30px;
	display: none;
}

.block2 .imgbox .hd ul {
	float: left;
	padding: 10px 0;
	padding-left: 12%;
	height: 10px;
	text-align: center;
}

.block2 .imgbox .hd li {
	position: relative;
	top: -8px;
	display: inline-block;
	margin: 0 3px;
	width: 8px;
	height: 8px;
	border: 1px solid #fff;
	border-radius: 50%;
	text-indent: -99999px;
}

.block2 .imgbox .hd li.on {
	background: #fff;
}

.block2 .imgbox .hd a {
	position: absolute;
	top: 6px;
	display: block;
	width: 33px;
	height: 18px;
}

.block2 .imgbox .hd a.prev {
	right: 107px;
	background: url(../images/prev2.png) no-repeat left center;
}

.block2 .imgbox .hd a.next {
	right: 40px;
	background: url(../images/next2.png) no-repeat left center;
}

.block2 .txtbox {
	float: left;
	width: calc(100% - 534px);
	height:620px;
}

.block2 .txtbox_top {
	height: 360px;
}

.block2 .txtbox_top .box1 {
	margin: 0 0 0 7.6%;
}

.block2 .txtbox_top .box1 h2 {
	float: left;
	padding-top: 6px;
}

.block2 .txtbox_top .box1 .p {
	float: right;
	display: block;
	margin-top: 5px;
	font-size: 13px;
	font-family: arial;
	line-height: 35px;
}

.block2 .txtbox_top .box1 .x1 {
	float: left;
	margin-right: 14px;
	width: 164px;
	height: 35px;
	text-transform: uppercase;
	transition: all .35s ease;
}

.block2 .txtbox_top .box1 .x1 span {
	position: relative;
	top: 18px;
	display: block;
	height: 1px;
	background: #cacaca;
}

.block2 .txtbox_top .box1 .x2 {
	float: left;
	height: 35px;
	text-transform: uppercase;
	font-size: 14px;
	color: #999999;
}

.block2 .txtbox_top .box1 .p:hover {
	color: #FF0000;
	transition: all .35s ease;
}


.block2 .txtbox_top .box2 {
	margin: 0 0 0 7.6%;
    margin-top: 27px;
    min-height: 96px;
    color: #606166;
    font-size: 16px;
	line-height: 25px;
}

.box2 p{
	font-size: 14px;
	color: #666;
	text-indent: 1.5em;
	margin: 0;
}

.box2  h3{
	font-size: 16px;
	color: #E74A45;
	padding-top: 10px;
	margin:  0;
}

.block2 .txtbox_bottom {
	margin-left: 7.6%;
	height: 360px;
}

.block2 .txtbox_bottom ul {
	overflow: hidden;
	padding-top: 78px;
}

.block2 .txtbox_bottom li {
	float: left;
	text-align: center;
	width: 25%;
	border-left: 1px solid #eee;
}

.block2 .txtbox_bottom li:first-child{
	border-left: 0;
}

.block2 .txtbox_bottom li .img {
	width: 34px;
	height: 35px;
	background: red;
	margin: 0 auto;
}

.block2 .txtbox_bottom li h2 {
	padding-top: 5px;
	font-size: 18px;
	color: #525252;
}

.block2 .txtbox_bottom li p {
	padding-top: 14px;
	font-size: 14px;
	color: #525252;
}

.block2 .txtbox_bottom li a {
	display: block;
	color: #303033;
}

.block2 .txtbox_bottom li.li1 .img {
	background: url(../images/b2_1.png) no-repeat center;
}

.block2 .txtbox_bottom li.li2 .img {
	background: url(../images/b2_2.png) no-repeat center;
}

.block2 .txtbox_bottom li.li3 .img {
	background: url(../images/b2_3.png) no-repeat center;
}

.block2 .txtbox_bottom li.li4 .img {
	background: url(../images/b2_4.png) no-repeat center;
}

.block2 .txtbox_bottom li.li1:hover .img {
	background: url(../images/b2_1_2.png) no-repeat center;
}

.block2 .txtbox_bottom li.li2:hover .img {
	background: url(../images/b2_2_2.png) no-repeat center;
}

.block2 .txtbox_bottom li.li3:hover .img {
	background: url(../images/b2_3_2.png) no-repeat center;
}

.block2 .txtbox_bottom li.li4:hover .img {
	background: url(../images/b2_4_2.png) no-repeat center;
}

.block2 .txtbox_bottom li:hover {
	color: #FF0000;
}

.block1{margin-bottom: 54px;}

/*block3*/
.block3 {
	height: 915px;
	background: url(../images/block3.png) no-repeat center;
	margin-top: 360px;
	position:  relative;
}

.block3 .blockbox {
	overflow: hidden;
}

.block3 .block3left {
	width: 50%;
	float: left;
}

.block3 .box1 {
	padding-top: 123px;
}

.block3 .box1 dt {
	font-size: 64px;
	color: #fff;
	font-family: 宋体;
}

.block3 .box1 dd {
	font-size: 24px;
	text-transform: uppercase;
	color: #fff;
}

.block3 .box2 {
	font-size: 18px;
	color: #fff;
	font-family: 宋体;
	padding: 120px 0 110px 0;
}

.block3 .box3 {
	font-size: 12px;
	font-family: arial;
	color: #949499;
	font-weight: normal;
	line-height: 22px;
}

.block3right {
	width: 50%;
	float: right;
}

.block3right .hd {
	margin-top: 130px;
	height: 130px;
	position: relative;
}

.block3right .hd ul {
	height: 130px;
	margin: 0 auto;
}

.block3right .hd li {
	height: 130px;
	width: 25%;
	float: left;
	text-align: center;
	font-size: 16px;
	color: #C5C5CC;
	position: relative;
	cursor: pointer;
}

.block3right .hd li::before {
	border-bottom: 2px solid #FE0000;
	width: 64px;
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -32px;
	bottom: -1px;
	display: none;
}

.block3right .hd li .img {
	display: block;
	width: 60px;
	height: 60px;
	border: 2px solid #fff;
	margin: 0 auto;
	border-radius: 5px;
	margin-bottom: 8px;
}

.block3right .hd li.li1 .img {
	background: url(../images/b3_1.png) no-repeat center;
}

.block3right .hd li.li2 .img {
	background: url(../images/b3_2.png) no-repeat center;
}

.block3right .hd li.li3 .img {
	background: url(../images/b3_3.png) no-repeat center;
}

.block3right .hd li.li4 .img {
	background: url(../images/b3_4.png) no-repeat center;
}

.block3right .hd li.li5 .img {
	background: url(../images/b3_5.png) no-repeat center;
}

.block3right .hd li.li6 .img {
	background: url(../images/b3_6.png) no-repeat center;
}

.block3right .hd li.on .img {
	border-color: #E74A45;
	background-color: #E74A45 !important;
	transition: all .35s ease;
}

.block3right .hd li.on span {
	color: #fff;
	transition: all .35s ease;
}


.block3right .bd {
	height: 340px;
	margin: 30px 0 20px 0;
	overflow: hidden;
	position: relative;
}

.block3right .hoverblock2 {
	display: block;
	width: 64px;
	height: 2px;
	background: #E74A45;
	position: absolute;
	left: 46px;
	bottom: -1px;
}



.block3right .end {
	height: 40px;
	margin-top: 20px;
	padding: 0 3px;
}

.block3right .x2 {
	color: #fff !important;
	margin-right: 5px;
	text-transform: uppercase
}

.block3right .x1 .hr {
	background: #fff !important;
}

.block3right .end .qipalinka {
	float: left;
}

.block3right .end .qipalinkb {
	float: right;
}

.block3right .end .qipalinka:hover .textgo {
	width: 40px !important;
}


.l{
	width: 100%;
	height: 1px;
	background-color: #666666;
	position: absolute;
	top: 260px;
	left: 0;
}


/*block4*/
.block4 {
	position: relative;
	height: 0;
}

.block4 .blockbox {
	position: relative;
	position: relative;
	top: -195px;
	overflow: hidden;
	margin: 0 auto;
	height:540px;
}

.block4 .blockbox .bd {
	overflow: hidden;
	width: 100%;
	height:540px;
}

.block4 .blockbox .bd ul {
	height:540px;
}

.block4 .blockbox .bd li {
	width: 100%;
	height: 100%;
}

.block4 .blockbox .hd {
	position: absolute;
	top: 47px;
	left: 60px;
	width: 300px;
	height: 520px;
}

.block4 .blockbox .hd li {
	display: none;
}

.block4 .blockbox .hd li.on {
	display: block;
}

.block4 .blockbox .hd .intro {
	padding: 45px;
	width: 300px;
	height: 327px;
	background: url(../images/block4_1.png) no-repeat center;
}

.block4 .blockbox .hd .intro h2 {
	margin-bottom: 30px;
	color: #fff;
	font-weight: normal;
	font-size: 36px;
	font-family: 宋体;
}

.block4 .blockbox .hd .intro p {
	color: #949499;
	font-size: 14px;
}

.block4 .blockbox .hd .intro2 {
	width: 300px;
	height: 120px;
	background: #222226;
}

.block4 .blockbox .hd .intro2 p {
	color: #919199;
	text-align: center;
	font-weight: normal;
	font-size: #919199;
	font-size: 20px;
	font-family: arial;
}

.block4 .blockbox .hd .intro2 p em {
	color: #fff;
}

.block4 .blockbox .hd .intro2 .hr {
	position: relative;
	margin: 16px auto;
	width: 150px;
	height: 1px;
	background: #606165;
}

.block4 .blockbox .hd .intro2 .hr i {
	position: absolute;
	bottom: -1px;
	left: 0;
	display: block;
	width: 15px;
	height: 3px;
	background: #E74A45;
}

.block4 .blockbox .hd .intro2 .txt {
	color: #C1C2CC;
	text-align: center;
	font-size: 14px;
}

.block4 .blockbox .hd .intro2 p {
	padding-top: 26px;
}

.block4 .blockbox .hd a {
	position: absolute;
	top:383px;
	display: block;
	width: 11px;
	height: 17px;
}

.block4 .blockbox .hd a.prev {
	left: 40px;
	background: url(../images/prev3.png) no-repeat;
}

.block4 .blockbox .hd a.next {
	right: 40px;
	background: url(../images/next3.png) no-repeat;
}

.block4 .blockbox .hd a.prev:hover {
	background: url(../images/prev3_1.png) no-repeat;
}

.block4 .blockbox .hd a.next:hover {
	background: url(../images/next3_1.png) no-repeat;
}

.block4 .blockbox .hd li.li1 .hr i {
	left: 0px;
}

.block4 .blockbox .hd li.li2 .hr i {
	left: 15px;
}

.block4 .blockbox .hd li.li3 .hr i {
	left: 30px;
}

.block4 .blockbox .hd li.li4 .hr i {
	left: 45px;
}

.block4 .blockbox .hd li.li5 .hr i {
	left: 60px;
}

.block4 .blockbox .hd li.li6 .hr i {
	left: 75px;
}

.block4 .blockbox .hd li.li7 .hr i {
	left: 90px;
}

.block4 .blockbox .hd li.li8 .hr i {
	left: 105px;
}

.block4 .blockbox .hd li.li9 .hr i {
	left: 120px;
}

.block4 .blockbox .hd li.li10 .hr i {
	left: 135px;
}

.jiagou-w{padding-left: 90px;}



.jiagou-img{margin-top: 66px;}

.honor{
	padding: 74px 0 180px;
	background: url(../images/bg-8.jpg) center no-repeat;
	background-size: cover;
	text-align:  center;
	margin-top: 330px;
}
.honor .index-tit{
    padding: 0 0 60px;
}
.honor .index-tit .cn{
    color:  #fff;
    padding: 0;
    font-size: 40px;
    line-height: 60px;
}
.honor .index-tit .en{font-size: 14px;}

.top_title .p1 {
    font-size: 64px;
    font-family: 宋体;
}

.top_title .p1 span {
	position: relative;
	color: #fff;
}


.top_title .p1 span i{position:absolute;width:24px;height:24px;border:2px solid #FF0000;border-radius:50%;    right: 138px;
    top: 1px;}


.top_title .p4{font-size:22px;font-family:arial;color:#fff;font-weight:normal;line-height:36px;text-transform: uppercase;}

/* 输入狂 */
.g-form {
	width: 100%;
	height: 400px;
	/* min-width: 1200px; */
	/* background: #f7f7f7 url(../images/bg-1.jpg) center no-repeat;*/
	background-size: cover;
	background: #f7f7f7;
}

.g-form-cont {
	overflow: hidden;
	padding: 74px 10px;
	height: 400px;
}

.company-guide,.reserve-form-wrap {
	display: table-cell;
	height: 220px;
}

.company-guide {
	padding-right: 70px;
	width: 320px;
	border-right: 1px dashed #696971;
	text-align: right;
}

.company-guide h5 {
	overflow: hidden;
	margin: 0;
	color: #666;
	text-overflow: ellipsis;
	white-space: nowrap;
	word-wrap: normal;
	font-size: 16px;
	line-height: 30px;
	-o-text-overflow: ellipsis;
}

.guide-c-title {
	margin: 0;
	color: #4c4c4c;
	font-weight: 700;
	font-size: 24px;
}

.guide-c-title strong {
	font-size: 40px;
}

.guide-e-title {
	overflow: hidden;
	margin: 0;
	margin-bottom: 30px;
	color: #7c7c7c;
	text-transform: uppercase;
	text-overflow: ellipsis;
	white-space: nowrap;
	word-wrap: normal;
	font-size: 20px;
	line-height: 30px;
	-o-text-overflow: ellipsis;
	margin-top: 5px;
}

.reserve-form-wrap {
	padding-left: 100px;
	width: 860px;
}

.reserve-form-wrap .c-title,.reserve-form-wrap .e-title {
	font-size: 24px;
	line-height: 30px;
}

.reserve-form-wrap .form-hd>p {
	overflow: hidden;
	color: #666;
	text-overflow: ellipsis;
	white-space: nowrap;
	word-wrap: normal;
	font-size: 14px;
	font-family: 'Microsoft YaHei';
	word-break: break-all;
	-o-text-overflow: ellipsis;
}

.form-bd {
	width: 100%;
	margin-top: 20px;
}

.form-group {
	margin: 0;
}

.form-inner {
	/* overflow: hidden; */
	width: 100%;
	height: 110px;
}

.form-item {
	position: relative;
	float: left;
	display: inline-block;
	/* overflow: hidden; */
}

.form-item.form-item0 {
	margin-right: 10px;
	margin-bottom: 10px;
}

.form-item.form-item1 {
	z-index: 1;
	margin-bottom: -60px;
	width: 360px;
	height: 110px;
}

.form-item.form-item2 {
	z-index: 1;
	overflow: hidden;
	margin-bottom: -60px;
	margin-left: 10px;
	width: 110px;
	height: 110px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background: #4d4d4d;
}

.form-item.form-item3 {
	margin-right: 490px;
}

.form-item.form-item0,.form-item.form-item3 {
	width: 280px;
	height: 50px;
}

.input-txt,.text-txt {
	overflow: hidden;
	padding: 10px 20px;
	width: 100%;
	height: 100%;
	outline: none;
	border: none;
	border: 1px solid #e6e6e6;
	background: #fff;
	color: #999;
	font-size: 16px;
	resize: none;
}

.input-txt::-webkit-input-placeholder,.text-txt::-webkit-input-placeholder {
	color: #999;
}

.input-txt:-moz-placeholder,.text-txt:-moz-placeholder {
	color: #999;
}

.input-txt::-moz-placeholder,.text-txt::-moz-placeholder {
	color: #999;
	opacity: 1;
}

.input-txt:-ms-input-placeholder,.text-txt:-ms-input-placeholder {
	color: #999;
}

.input-txt:focus,.text-txt:focus {
	border-color: #ccc;
}

.submit-btn {
	display: block;
	width: 100%;
	height: 100%;
	outline: none;
	border: none;
	background: none;
	color: #ccc;
	font-size: 16px;
	cursor: pointer;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	-o-transition: all 0.6s ease;
	transition: all 0.6s ease;
}

.submit-btn i {
	margin-left: 5px;
}

.submit-btn:hover {
	background: #dd4f50;
	color: #fff;
}

#Validform_msg {
	display: none;
}

.Validform_close {
	display: none;
}

.Validform_checktip {
	display: block;
	overflow: hidden;
	width: 0;
	height: 0;
	text-indent: -1000000px;
	font-size: 0;
}

.text-left{
	text-align: left;
}

.wrap1{
	width: 1200px;
	margin: auto;
}

.wrap1 .c-title{margin: 6px 0;}

.input-txt:focus,.text-txt:focus {
	border: 1px solid #ff0000;
}
/* 输入狂 end*/

/* Slider */
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	margin-right: auto;
	margin-left: auto;
}

.slick-track:before,
.slick-track:after {
	display: table;
	content: '';
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	float: left;
	display: none;
	height: 100%;
	min-height: 1px;
}
[dir='rtl'] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}


.slick-arrow {
	position: absolute;
	top: 50%;
	left:-71px;
	z-index: 5;
	margin-top: -25px;
	width: 47px;
	height: 104px;
	outline: 0;
	font-size: 0;
	cursor: pointer;
	-webkit-text-size-adjust: none;
	border: 1px solid #867f7f;
	background-color: transparent;
	background-position: center center;
	background-repeat: no-repeat;
}

.slick-arrow.slick-next {
	right: -71px;
	left: auto;
	background-image: url(../images/next4.png);
}

.slick-arrow.slick-next:hover{
	background-image: url(../images/next-4-1.png);
}

.slick-prev{
	background-image: url(../images/prev4-f.png);
}

.slick-prev:hover{
	background-image: url(../images/prev-4.png);
}

.slick-arrow:hover{
	border: 1px solid #dd4f50;
}

.slick-dots {
	position: absolute;
	bottom: 10px;
	left: 0;
	width: 100%;
	text-align: center;
	line-height: 1;
}

.slick-dots li {
	display: inline-block;
	margin: 0 6px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(55,55,55,.5);
	cursor: pointer;
}

.slick-dots li.slick-active,.slick-dots li:hover {
	background-color: rgba(55,55,55,1);
}

.slick-dots li button {
	display: none;
}

.pictures-slick {
	padding: 50px 0;
}

.slick-initialized .slick-slide {
	background-position: center center;
	background-size: cover;
}

.slick-arrow:hover {
	opacity: 1;
}



.slick-slide {
	position: relative;
}

.item {
	width: 270px
}

.item .img-box {
	-webkit-transform: scale(.8);
	-moz-transform: scale(.8);
	-ms-transform: scale(.8);
	-o-transform: scale(.8);
	transform: scale(.8);
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s
}

.item.active .img-box {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1)
}

.w_w{
	width: 1330px;
	margin: auto;
}

.about-nav a{
	width: 158px;
	border-radius: 20px;
	margin: 0 17px;
}

.text-center{text-align: center;}

.title-box-b .title{
	font-size: 32px;
    position: relative;
	padding-top: 80px;
	color: #333333;
}

.title-box-b .title-sub{
	font-size: 16px;
	color: #666666;
	margin-top: 5px;
}

.partner {
    font-size: 0;
}

.popup-toggle {
    /* cursor: pointer; */
}

.partner > span {
    line-height: 110px;
    display: inline-block;
    width: 140px;
    margin: 10px 30px;
    vertical-align: middle;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.partner > span > img {
	vertical-align: middle;
	display: inline-block;
}

.partner > span:hover{
	-webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

.scrollFullscreen{
	height: 100vh;
	position: relative;
	background: url(../images/banner-3.jpg) center no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
.jiagou{text-align: center;margin-top: 449px;}

.service_list{margin-top: 58px;}

.service_list li{
	float: left;
	width: 32.3333%;
	margin-bottom: 1%;
	box-shadow: 0 0 15px #d8d8d8;
	position: relative;
	/* height: 349px; */
	overflow: hidden;
	margin-right: 0.5%;
	margin-left: 0.5%;
}
.service_list li>img{width:100%;}

.mask-text{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: url(../images/bg-5.png) center center no-repeat;
	background-size: 100%;
	padding: 13%  0 0 0;
	text-align: center;
	transform: translateY(349px);
	transition: all .5s;
	-webkit-transform: translateY(349px);
	-webkit-transition: all .5s;
}

.service_list li:hover .mask-text{
	transform: translateY(0);
	transition: all .5s;
	-webkit-transform: translateY(0);
	-webkit-transition: all .5s;
}

.service_list li:hover > img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1)
}

.service_list li > img{
	width: 100%;
	transition: all .5s;
	-webkit-transition: all .5s;
}

.mask-text img{
	margin: 0 auto 14px;
}

.mask-text h3{
	font-size: 16px;
	color: #fff;
}

.mask-text p{
	font-size: 12px;
	color: #fff;
	line-height: 1.65;
	padding-top: 20px;
}


.fuwutx{
	padding: 0 0 80px;
	background: #f2f2f2;
}

.work_list {
	margin-top: 30px;
}

.work_list li{
	float: left;
	width: 49%;
	margin-right: .5%;
	margin-left: .5%;
	margin-bottom: 1%;
	box-shadow: 0 0 15px #dfdfdf;
	position: relative;
	overflow: hidden;
}

.work_list li:nth-child(2n){}

.work-text{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	padding-top: 86px;
	padding-left: 62px;
}

.work_list li img, .work-text{
	transition: all .5s;
	-webkit-transition: all .5s;
	width: 100%;
}

.work_list li:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1)
}

.work-text h3{
	font-size: 14px;
	color: #999999;
	padding-left: 50px;
	background-position: left center;
	background-repeat: no-repeat;
	line-height: 34px;
}

.work_list li:hover .work-text{
	padding-left: 96px;
}

.h3-1{
	background-image: url(../images/icon11.png);
}

.work-text p{
	font-size: 14px;
	color: #666;
	line-height: 1.65;
	margin-top: 36px;
}

.h3-2{
	background-image: url(../images/icon12.png);
}

.h3-3{
	background-image: url(../images/icon13.png);
}
.h3-4{
	background-image: url(../images/icon14.png);
}

.fuwuliuc{
	padding: 0px 0 140px;
	background: url(../images/bg-6.jpg) center no-repeat;
	background-size: cover;
}

.work-flow-list{
	margin-top: 10px;
	text-align:  center;
}

.work-flow-list li{
	width: 15.6%;
	height: 280px;
	box-shadow: 0 0 15px #f0f0f0;
	padding-top: 30px;
	text-align: center;
	margin-right: .5%;
	margin-left: .5%;
	background: #fff;
	float:  left;
}

.work-flow-list li:last-child{}

.work-flow-list li img{
	margin: 0 auto 20px;
}

.work-flow-list li h3{
	font-size: 14px;
	color: #666666;
	margin-bottom: 14px;
}
.work-flow-list li p{
	font-size: 12px;
	color: #c8c8c8;
	text-transform: uppercase;
}
.zs-team{text-align:center;}
.zs-team img{margin-top:80px}


.serviceteam{
	padding: 0px 0 80px;
	background: url(../images/bg-7.jpg) center no-repeat;
	background-size: cover;
}

.serviceteam-list{margin-top: 30px;}

.serviceteam-list li{
	float: left;
	width: 19%;
	height: 280px;
	box-shadow: 0 0 15px #f0f0f0;
	margin-right: .5%;
	margin-left: .5%;
	background: #fff;
	position: relative;
	padding-top: 77px;
	text-align: center;
	transition: all .5s;
	-webkit-transition: all .5s;
}

.serviceteam-list li:last-child{margin-right: 0;}

.line-w{
	width: 55px;
	height: 6px;
	background: #dd4f50;
	position: absolute;
	left: 50%;
	margin-left: -27.5px;
	top: -3px;
}

.serviceteam-list li h3{
	font-size: 18px;
	color: #666666;
	transition: all .5s;
	-webkit-transition: all .5s;
}

.line-r{
	width: 92px;
	height: 2px;
	background: #dd4f50;
	margin: 14px auto 40px;
}

.serviceteam-list li p{
	font-size: 14px;
	color: #666;
	line-height: 28px;
	transition: all .5s;
	-webkit-transition: all .5s;
}

.serviceteam-list li:hover{
	background: #262626;
}

.serviceteam-list li:hover p,.serviceteam-list li:hover h3{color: #fff;}


.visit{
	padding: 0px 0 76px;
}

.visit-list{margin-top: 30px;}

.visit-list li{
	overflow: hidden;
	box-shadow: 0 0 15px #f0f0f0;
	margin-bottom: 50px;
}
.visit-list li .imgbox{
	width:50%;
}
.visit-list li .imgbox img{width:100%;}
.visit-list li .imgbo{
	width: 600px;
	height: 200px;
}

.visit-list li:nth-child(2n+1) .imgbox{
	float: left;
}

.visit-list li:nth-child(2n) .imgbox{
	float: right;
}

.visit-list li:nth-child(2n+1) .imgbox-text{
	float: right;
}

.visit-list li:nth-child(2n) .imgbox-text{
	float: left;
}

.imgbox-text{
	padding-left: 60px;
	width: 50%;
	/* height: 200px; */
	padding-top: 24px;
}

.imgbox{overflow: hidden;}

.imgbox img,.imgbox-text{
	transition: all .5s;
	-webkit-transition: all .5s;
}

.visit-list li:hover .imgbox-text{
	padding-left: 68px;
}

.visit-list li:hover .imgbox img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1)
}


.popup-wrap {
    z-index: 110;
    overflow: auto;
    transition: .4s;
    opacity: 0;
    visibility: hidden;
}

.popup-wrap.active {
    opacity: 1;
    visibility: visible;
}
.popup-wrap, .popup-wrap-close {
    top: 0;
    right: 0;
	bottom: 0;
	position: fixed;
    left: 0;
}
.popup-wrap-close {
    position: fixed;
	background: rgba(0,0,0,0.8);
	z-index: 9999;
}

.popup {
    font-size: 14px;
    position: relative;
    display: inline-block;
    border-radius: 5px;
    color: #666666;
    background: #fff;
    text-align: left;
    vertical-align: middle;
    visibility: hidden;
	opacity: 0;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 1000000;
}

.popup-1 {
    width: 878px;
    height: 426px;
}
.active > .popup {
    visibility: visible;
    opacity: 1;
}


.popup-1:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    height: 350px;
    margin: auto;
    background: #ddd;
    content: '';
}

.popup-close {
    position: absolute;
	top: 0;
	right: 0;
    padding: 10px;
}

.popup-close:before {
    display: block;
   	background: url(../images/close_min.png) center center no-repeat;
    height: 30px;
    width: 30px;
	content: '';
	top: 0;
	right: 0;
}
.popup-1 > .fl, .popup-1 > .fr {
    width: 50%;
}


.popup-title {
    font-size: 26px;
    margin-top: 43px;
    text-align: center;
}


.popup-field-wrap {
    width: 280px;
    margin: auto;
}

.select-wrap {
    position: relative;
}

.popup-field {
    display: block;
    width: 278px;
    height: 38px;
    margin: 10px auto;
    text-indent: 20px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.popup-title {
    font-size: 26px;
    margin-top: 43px;
    text-align: center;
}
.popup-1-price {
    height: 53px;
    padding: 30px 0 17px;
    color: #bbb;
}


.inline-block {
    display: inline-block;
}

.popup-1-list {
    width: 228px;
    padding: 8px 6px;
    margin: 10px 0 0 130px;
    border-bottom: 1px solid #ddd;
}


.popup-num-unit {
    font-size: 12px;
    bottom: 0;
    left: 100%;
    margin-left: 20px;
    white-space: nowrap;
}


.popup-2 {
    width: 750px;
    height: 360px;
    padding-left: 375px;
    background: #fff url(../images/popup.jpg) 0 50% no-repeat;
}

.popup-2-btn {
    display: block;
    width: 280px;
    height: 40px;
    margin: auto;
    color: #fff;
    border: none;
    border-radius: 3px;
    background: #dd4f50;
	cursor:pointer;
}

#fd {
	clear: both
}

.fd-nav {
	padding: 50px 0;
	background-color: #505254;
	overflow: hidden;
	color: #fff;
}

.friend-link {
	background-color: #404040;
	color: #929292;
	padding: 40px 0;
	text-align: center
}

.friend-link a {
	color: #929292
}

.friend-link .link a {
	padding: 0 15px;
	position: relative
}

.friend-link .link a:after {
	content: '';
	height: 12px;
	width: 1px;
	background-color: #929292;
	position: absolute;
	right: 0;
	top: 4px
}

.friend-link .link a:last-child:after {
	display: none
}

.friend-link .link {
	margin-bottom: 20px
}

.fd-copy span {
	margin: 0 10px
}

.fd-copy a {
	color: #5f5f5f
}

.friend-link .link a:hover,.fd-copy a:hover {
	color: #fff
}

.fd-l {
	float: left;
	width: 770px
}

.fd-r {
	float: right;
	width: 430px
}

.fd-nav dt {
	margin-bottom: 20px
}

.fd-nav h3 {
	color: #fff;
	font-style: italic;
	font-size: 24px;
	margin-bottom: 40px
}

.fd-l dt a {
	color: #fff;
	font-size: 18px
}

.fd-l dd a {
	color: #fff;
	margin-bottom: 4px;
	display: block;
}

.fd-l dd a:hover {
	color: #fff
}

.fd-l dl {
	float: left;
	width: 150px
}

.fd-nav h3 span {
	border-bottom: 1px solid #404040;
	padding: 0 5px;
	padding-bottom: 10px;
	font-family: bell mt;
}

.fd-r h4 {
	font-size: 18px;
	color: #fff;
}

.fd-r h5 {
	font-weight: 700;
	font-size: 24px;
	margin: 20px 0;
	color: #fff;
}

.fd-r .qr-box,.fd-r .con {
	display: inline-block;
	vertical-align: top
}

.qr-box img {
	margin-bottom: 10px;
	width: 121px;
	height: 121px
}

.qr-box p {
	text-align: center
}

.fd-r .con {
	width: 300px
}

.qr-box {
	width: 121px
}

.fd-r .con p {
	line-height: 1.6
}

.f-nav {
	position: absolute;
	left: 0;
	bottom: 90px;
	width: 100%;
	text-align: center;
	z-index: 60
}

.f-nav i {
	display: inline-block;
	width: 18px;
	height: 18px;
	background-color: #fff;
	border-radius: 50%;
	margin: 0 5px;
	cursor: pointer
}

.f-nav .now {
	background-color: #e74a45
}

.focus .bg {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	height: 100%
}

.more1 {
	display: inline-block;
	width: 145px;
	height: 44px;
	line-height: 44px;
	border: 1px solid #fff;
	margin-top: 36px;
	font-size: 14px;
	color: #fff;
	overflow: hidden;
	text-transform: capitalize;
	-webkit-transition: .3s;
	transition: .3s
}

.more1:hover {
	background-color: #e74a45;
	border-color: #e74a45;
	color: #fff
}

.focus .con {
	position: absolute;
	top: 50%;
	transform: translateY(-51%);
	-webkit-transform: translateY(-51%);
	width: 100%;
	text-align: center;
	color: #fff;
	text-transform: uppercase
}

.focus .con p {
	font-size: 36px;
	margin-bottom: 10px
}

.focus .con h3 {
	font-size: 48px;
	font-weight: 700
}

.focus .con h4 {
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 20px
}

.menu-pop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(231,75,69,.94);
	z-index: 120;
	display: none
}
.arrow-down {
	position: absolute;
	bottom: 16px;
	z-index: 50;
	text-align: center;
	width: 100%
}

.arrow-down i {
	display: inline-block;
	width: 50px;
	height: 50px;
	background: url(../images/ar1.png) no-repeat center 50%;
	-webkit-animation: arrowDown 1s infinite linear;
	animation: arrowDown 1s infinite linear;
	cursor: pointer
}

@-webkit-keyframes arrowDown {
	0% {
		-webkit-transform: translate(0,0)
	}

	25% {
		-webkit-transform: translate(0,6px)
	}

	50% {
		-webkit-transform: translate(0,0)
	}

	75% {
		-webkit-transform: translate(0,-6px)
	}

	100% {
		-webkit-transform: translate(0,0)
	}
}

@keyframes arrowDown {
	0% {
		transform: translate(0,0)
	}

	25% {
		transform: translate(0,6px)
	}

	50% {
		transform: translate(0,0)
	}

	75% {
		transform: translate(0,-6px)
	}

	100% {
		transform: translate(0,0)
	}
}


/*middle*/
.middle{ margin-top:30px; margin-bottom:30px;}
.md_left{ width:65.666%; float:left; overflow:hidden;}
.md_right{ width:31.083%; float:right; overflow:hidden;}
.inner_md_left{ width:69.666%; float:left; overflow:hidden;margin:0px;}
.inner_md_right{ width:27.083%; float:right; overflow:hidden; margin-top:-20px;}

.ladder{height:auto;margin: 40px 0;}
.ladder .imgbox{width: 38%;height:auto;float:left;} .ladder .imgbox img{ width:100%; height:auto;}
.ladder .txtbox{width: 62%;height:auto;float:left;padding-left: 30px;}
.ladder .txtbox h2{ font:26px/40px '微软雅黑'; color:#E74A45; text-transform:uppercase;}
.ladder .txtbox p{ font:14px/25px '微软雅黑'; color:#4d4d4d;}
.design_title{width:100%;height:auto;background: #f1f1f1;padding:10px 0;margin: 20px 0;}
.design_title .square{ width:60px; height:60px; display:block; background:#E74A45; font:41.05px/60px '微软雅黑'; color:#fff; text-align:center; float:left; margin-right:20px;}
.design_title .fl{ font:30px/43px '微软雅黑'; color:#E74A45; float:inherit !important}
.design_title .fl i{ font:11px/12px '微软雅黑'; color:#666; text-transform:uppercase;}
.design_title .fl div{ font:11px/12px '微软雅黑'; color:#666; text-transform:uppercase;}

.dl_design{height:auto;padding: 10px 0;}
.dl_design .txtbox{width: 74%;height:auto;float:left;padding:  20px;padding-right: 50px;padding-top: 73px;}
.dl_design .txtbox p{font: 16px/26px '微软雅黑';color:#4d4d4d;}
.dl_design .txtbox .step{width:100%;height:auto;}
.dl_design .txtbox .step_1,.dl_design .txtbox .step_2,.dl_design .txtbox .step_3,.dl_design .txtbox .step_4{ width:auto; height:70px; background:url(../images/design_bg2.png) right center no-repeat; float:left; padding-right:49px;}
.dl_design .txtbox .step_2{ padding-right:29px; background-image:url(../images/design_bg3.png);}
.dl_design .txtbox .step_4{ padding-right:29px; background-image:url(../images/design_bg3.png);}
.dl_design .txtbox .step_1 span{width:auto;height:100%;padding:0 5px 0 13px;background:url(../images/design_bg1.png) 0 0 repeat-x;float:left;}
.dl_design .txtbox span i{ font:35.88px/65px Arial; color:#E74A45; float:left; margin-right:10px;}
.dl_design .txtbox span b{font:18px/65px '微软雅黑'; color:#231815; float:left;}
.dl_design .txtbox span strong{font:18px/65px '微软雅黑'; color:#231815; float:left;}
.dl_design .txtbox span div{ font:35.88px/65px Arial; color:#E74A45; float:left; margin-right:10px;}
.dl_design .txtbox .step_2 span{ width:auto; height:100%; display:block; padding:0 5px 0 15px; background:url(../images/design_bg1.png) 0 0 repeat-x;}
.dl_design .txtbox .step_3 span{width:auto;height:100%;padding:0 5px 0 13px;background:url(../images/design_bg1.png) 0 0 repeat-x;float:left;}
.dl_design .txtbox .step_3 span div{ font:35.88px/65px Arial; color:#E74A45; float:left; margin-right:10px;}
.dl_design .txtbox .step_3 span strong{font:17.89px/34px '微软雅黑'; color:#231815; float:left;}
.dl_design .txtbox .step_4 span{ width:auto; height:100%; display:block; padding:0 5px 0 15px; background:url(../images/design_bg1.png) 0 0 repeat-x;}
.dl_design .txtbox .step_4 span div{ font:35.88px/65px Arial; color:#E74A45; float:left; margin-right:10px;}
.dl_design .txtbox .step_4 span strong{font:17.89px/34px '微软雅黑'; color:#231815; float:left;}
.dl_design .imgbox{width: 26%;float:left;}
.dl_design .imgbox img{width:100%;}

.dl_design_systdiv{
    margin-bottom: 20px;
}
.dl_design_systdiv .right{ width:34%; height:auto; margin:0 8%;}
.dl_design_systdiv .left{ width:45%; height:auto;}
.dl_design_systdiv h3{font:24px/40px '微软雅黑'; color:#231815;}
.dl_design_systdiv p{font:14px/25px '微软雅黑'; color:#4d4d4d;}  .dl_design_systdiv p img{ vertical-align:middle;}
.dl_design_systdiv h2{font:26px/40px '微软雅黑'; color:#4d4d4d;}
.icon_title{
    margin: 28px 0;
}
.line_dash{height:2;width:100%;border-bottom:1px dashed #dcdbdb;margin: 40px 0;}
.icon_title_1{width:33px;height:33px;display:block;float:left;background:#E74A45;border:1px solid #E74A45;font:30px/33px Arial;color:#fff;text-align:center;border-radius:20px;-moz-border-radius:20px;-ms-border-radius:20px;-o-border-radius:20px;-webkit-border-radius:20px;}
.icon_title_font{/* height:33px; */float:left;font:17.55px/25px '微软雅黑';color:#E74A45;margin-left:5px;width: calc(100% - 38px);}
.icon_title_font div{ font:8.36px/10px Arial; color:#949494;}
.design_px_list{ margin-left:-4%;margin-left:-3%\9;}
.design_px_list li{ width:13.75%; height:auto; float:left; text-align:center; margin-left:2.9%; }
.design_px_list li h2{font:21px/25px '微软雅黑'; color:#E74A45;margin:0px; padding:0;}
.design_px_list li p{font:14px/25px '微软雅黑'; color:#4d4d4d;margin:0px; padding:0;}
.design_px_list li .text{width:96%;height:auto;position:absolute;top:5px;left:2%;z-index:1;margin:0px;padding:0;}
.design_px_list1{}
.design_px_list1 li{width:29.08%;height:auto;float:left;/*margin:0 2.85% 0 1.4%;*/margin-left:4.2%;}

.design_step span{height:49px;display:block;float:left;color:#fff;}
.design_step span strong{ font:15.52px/49px '微软雅黑'; float:left;}
.design_step span div{ font:31px/49px Arial; color:#fff; float:left; margin-right:5px;}
.design_step_1{background:url(../images/desingn_step_1.png) 0 0 no-repeat;padding-left:30px;width: 145px;}
.design_step_2{background:url(../images/desingn_step_2.png) 0 0 no-repeat;padding-left:48px;width: 160px;margin-left:-10px;}
.design_step_3{background:url(../images/desingn_step_3.png) 0 0 no-repeat;padding-left:50px;width: 160px;margin-left:-10px;}
.right{float: right;}
.left{float: left;}

.zd_atit{font-size: 25px;padding: 15px 0;}
.c1{color: #E74A45;}
.zdlist{position: relative;min-height: 300px;margin-bottom: 20px;margin-left: 20px;}
.zdlist:after{display: block;content: '';background: url(../images/bz1.png) repeat-x;position: absolute;left: 0;right: 0;top:48%;height: 17px;}
.zdlist li{width: 16.66666%;float: left;font-size: 16px;position: relative;z-index: 3;}
.zdlist li .zti{height: 33px;line-height: 33px;text-align: center;background: #E74A45;color: #fff;font-size: 18px;margin:  0;}
.zdlist li .zt_c{position: relative;background: #efefef;height: 84px;position: relative;/* line-height:  84px; */text-align:  center;display: table;width: 100%;}
.zdlist li .zt_c .tpt{text-align: center;display: table-cell;vertical-align: middle;}
.zdlist li .fa{position: absolute;left:45%;bottom: -14px;color: #efefef;font-size: 38px;}
.zdlist li.even{margin-top:117px;}
.zdlist li.even .fa{color: #E74A45;transform: rotate(-180deg);bottom: auto;top:-46px;}
.zdlist li .num{width: 40px;height: 40px;border-radius: 50%;line-height: 40px;text-align: center;color: #fff;margin:0 auto;font-size: 16px;background: #E74A45;margin-top:16px}
.zdlist li.even .num{margin-bottom: 14px;}
.zdlist li:first-child{margin-left: 0;margin-right: 0;}
.zd_one{background: #f8f8f8;/* padding: 20px 0; */}
.zd_atit p{padding: 20px 10%;font-size: 14px;text-align: left;}
.yslist{margin:0 -3px;}
.yslist li{width: 32.33333%;float: left;margin: 0 .5%;}
.yslist li .infor{position: relative;height: 375px;background: #E74A45;color: #fff;padding: 0 20px;width: auto;font-size: 16px;margin: 3% 0;display: table;width: 100%;}
.yslist li .infor .txt{
    line-height: 3em;
    display: table-cell;
    vertical-align: middle;
}
.yslist li img{display: block;width: 100%;margin: 3% 0;}
.zjian table{width: 100%;border-collapse: collapse;}
.zjian .zjian_title{background: url(../images/ysg.png);height: 48px;line-height: 48px;color: #fff;font-size: 22px;font-weight: normal;letter-spacing: 10px;text-align:center;}
.zjian td{font-size: 14px; background: #f8f8f8;border:2px solid #fff;padding: 8px 25px;}
.zjian table.zj_dao td{text-align: center;font-size: 16px;border:1px solid #E74A45;padding:5px 0;}
.zjian .fa-star{color: #E74A45;}
.zjian table.zj_dao td.td_t{background: #E74A45;color: #fff;border:1px solid #fff;text-align: center;}
.zjian .zjian_main{}
.zjian .zjian_main ul{}
.zjian .zjian_main ul li{
    height: 85px;
}
.zjian .zjian_main ul li .zjian_h{
    width: 15%;
    float:  left;
    height: 100%;
    display: table;
}
.zjian .zjian_main ul li .zjian_h p{
    font-size: 14px;
    background: #f8f8f8;
    border: 2px solid #fff;
    padding: 8px 25px;
    height: 100%;
    display:  block;
    width:  100%;
    margin: 0;
    display: table-cell;
    vertical-align: middle;
    text-align:  center;
}
.zjian .zjian_main ul li .zjian_p{
    width: 85%;
    float:  left;
    display: table;
    height: 100%;
}
.zjian .zjian_main ul li .zjian_p p{
    font-size: 14px;
    background: #f8f8f8;
    border: 2px solid #fff;
    padding: 8px 25px;
    display:  block;
    height:  100%;
    margin: 0;
    display: table-cell;
    vertical-align: middle;
}
.zd_atit h3{font-size: 24px;}
.zd_atit .txt{font-size: 16px;padding:5px 0 0;}
.zxdlist{margin:0 -3px;}
.zxdlist li{float: left;width: 33.3333%;margin-bottom: 6px;}
.zxdlist li .himg{display: block;margin:0 3px;height: auto;}
.zxdlist li .himg img{width: 100%;height: auto;}
.anli_wrap{position: relative;}
.wrap_kuan{width:1160px;margin:0 auto;}
.wrap-page-pic .wrap{width: auto;padding:0 20px;min-width:1160px;}
.wrap-page-pic .ab_main{position: relative;min-height: 1380px;overflow: auto;}
.wrap-page-pic .aside{position: absolute;top:0;right:0;}
.wrap-page-pic .ab_cont{margin-right: 290px;width: auto;display: block;float: none;}
.hot_img_box{background: #fff;margin:20px 0;padding: 0 15px;}
.hot_img_box h3{font-size: 16px;color: #333;padding: 10px 0;}
.hot_img_box .masonry .box {width: 23.2%;}
.hot_img_box .masonry .box .tx_hover{display: none !important;}
.hot_img_box .masonry .box .txt{padding: 0;text-align: center;}
.wrap-page-pic{}

.cal-btn {
	cursor: pointer;
	border: 0;
	width: 178px;
	height: 178px;
	background: url(../images/bt1.png) no-repeat 50%;
	position: absolute;
	right: -91px;
	top: 78px;
	-webkit-transition: .3s;
	transition: .3s;
	z-index: 20;
}

.sub.disabled {
	opacity: .8;
	-ms-filter: 'alpha(opacity= 80)';
	filter: alpha(opacity=80)
}

.cal-btn:hover {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1)
}
.txt4_wap,.jiagou-img_wap{display:none;}
.part_honor .imgbox{width:40.25%;margin-right:5%;float: left;}
.part_honor .txtbox{float: left;}


.float-bar {
	position: fixed;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	width: 60px;
	z-index: 80
}

.float-bar li {
	position: relative;
	height: 60px;
	background-color: rgba(255,255,255,.6);
	width: 60px;
	float: right;
	border: 1px solid rgba(255,255,255,.5);
	margin-bottom: -1px;
	-webkit-transition: .3s;
	transition: .3s
}

.float-bar li.s1 a {
	-webkit-animation-name: hvr-buzz;
	animation-name: hvr-buzz;
	-webkit-animation-duration: .3s;
	animation-duration: .3s;
	-webkit-animation-timing-function: ease;
	animation-timing-function: ease;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite
}

.pop-qr {
	position: absolute;
	left: -130px;
	top: -35px;
	opacity: 0;
	transform: translateX(25px);
	-webkit-transform: translateX(25px);
	-o-transition: .3s;
	-ms-transition: .3s;
	-moz-transition: .3s;
	-webkit-transition: .3s;
	transition: .3s;
	visibility: hidden
}

.float-bar li.s3:hover .pop-qr {
	opacity: 1;
	transform: translateX(0px);
	-webkit-transform: translateX(0px);
	visibility: visible
}


@-webkit-keyframes hvr-buzz {
	50% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg)
	}

	100% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg)
	}
}

@keyframes hvr-buzz {
	50% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg)
	}

	100% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg)
	}
}

.float-bar a {
	display: block;
	width: 100%;
	height: 60px;
	background-repeat: no-repeat;
	background-position: right 0
}

.float-bar .tel {
	background-image: url(../images/c1.png)
}

.float-bar .cal {
	background-image: url(../images/c2.png)
}

.float-bar .qr {
	background-image: url(../images/c3.png)
}

.float-bar .top {
	background-image: url(../images/c4.png)
}

.float-bar li:hover a,.float-bar a:hover {
	background-position: right -60px
}

.float-bar li:hover {
	background-color: rgba(235,39,37,.6)
}

.float-bar .s2 {
	position: relative
}

.float-bar .s2 span {
	width: 70px;
	text-align: center;
	color: #fff;
	font-size: 12px;
	position: absolute;
	left: 0;
	top: 0;
	height: 60px;
	line-height: 60px;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: .3s;
	transition: .3s
}

.float-bar .s2:hover {
	width: 130px
}

.float-bar .s2:hover span {
	visibility: visible;
	opacity: 1
}
.info-box {
	font-size: 0;
	position: relative;
	margin: 25px auto;
	text-align: center;
	width: 100%;
}

.info-img {
	max-width: 100%;
	/* min-width: 400px; */
}

.btn_img{
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	text-align: center;
	z-index: 2;
	transition: all .5s;
	opacity: 0;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	background-size: 100%;
    background-image: -moz-linear-gradient(90deg, rgba(0,0,0,0.75) 0%,rgba(0,0,0,0) 100%);
    background-image: -webkit-linear-gradient(90deg, rgba(0,0,0,0.75) 0%,rgba(0,0,0,0) 100%);
    background-image: linear-gradient(0deg, rgba(0,0,0,0.75) 0%,rgba(0,0,0,0) 100%);
    -moz-transition: .4s;
    -o-transition: .4s;
    -webkit-transition: .4s;
	transition: .4s;
	padding-bottom: 28px;
}

.info-btn {
	display: inline-block;
	font-size: 14px;
	line-height: 36px;
	width: 180px;
	color: #fff;
	border: 1px solid #fff;
	margin: 0 19px;
	transition: all .5s;
}

.info-box:hover .btn_img{
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	opacity: 1;
}

.info-btn:hover{
	background: #E74A45;
	color: #fff;
	border-color: transparent;
}

.info-more {
	position: relative;
	width:350px;
	margin-right:14px;
}

.info-more:last-child{
	margin-right: 0;
}

.info-more img{width: 100%;height:220px;}

.info-more span{
	font-size: 14px;
	color: #666666;
	margin-top: 10px;
	display: block;
}

.focus ul,.focus li,.focus li a,.focus {
	height: 100%
}

.focus {
	overflow: hidden;
	position: relative;
	width: 100%
}

.focus ul {
	overflow: hidden;
	width: 9999px;
	height: 100%
}

.focus li {
	float: left;
	width: 100%;
	height: 100%;
	position: absolute
}

.focus li img {
	width: 100%;
	height: auto
}

.focus li.s {
	z-index: 50
}

.f-nav {
	position: absolute;
	left: 0;
	bottom: 90px;
	width: 100%;
	text-align: center;
	z-index: 60
}

.f-nav i {
	display: inline-block;
	width: 18px;
	height: 18px;
	background-color: #fff;
	border-radius: 50%;
	margin: 0 5px;
	cursor: pointer
}

.f-nav .now {
	background-color: #e74a45
}

.focus .bg {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	height: 100%
}

.more1 {
	display: inline-block;
	width: 145px;
	height: 44px;
	line-height: 44px;
	border: 1px solid #fff;
	margin-top: 36px;
	font-size: 14px;
	color: #fff;
	overflow: hidden;
	text-transform: capitalize;
	-webkit-transition: .3s;
	transition: .3s
}

.more1:hover {
	background-color: #e74a45;
	border-color: #e74a45;
	color: #fff
}

.focus .con {
	position: absolute;
	top: 50%;
	transform: translateY(-51%);
	-webkit-transform: translateY(-51%);
	width: 100%;
	text-align: center;
	color: #fff;
	text-transform: uppercase
}

.focus .con p {
	font-size: 36px;
	margin-bottom: 10px
}

.focus .con h3 {
	font-size: 48px;
	font-weight: 700
}

.focus .con h4 {
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 20px
}
#ban-in {
	height: 590px;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	overflow: hidden;
	position: relative
}

#ban-in .bg {
	position: absolute;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	top: -15%;
	bottom: -15%;
	left: 0;
	right: 0
}

#ban-in .txt {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -191.5px;
	margin-top: -79.5px;
	text-align: center;
	z-index: 60;
	background: url(../images/kuang.png) no-repeat;
	border-top: 0;
	width: 383px;
	height: 159px;
	-webkit-background-size: 100%;
	background-size: 100%
}

#ban-in .txt span {
	font-size: 30px;
	color: #e74a45;
	font-family: Arial,helvetica neue,Helvetica,sans-serif;
	text-transform: uppercase;
	display: block;
	margin-top: -15px
}

#ban-in .txt b {
	letter-spacing: 9px;
	display: block;
	font-size: 60px;
    font-weight: 400;
	color: #fff;
	margin-top: 15px
}
.cur {
	height: 56px;
	color: #fff;
	line-height: 56px;
	padding: 0 28px 0 23px;
	margin-top: -56px;
	position: relative;
	z-index: 60;
	background: url(../images/icon_cur.png) 23px center no-repeat;
	padding-left: 51px;
	background-color: rgba(231,74,69,.7)
}
.cur p{margin:0;overflow: hidden;text-overflow:ellipsis;white-space: nowrap;}
.cur a {
	display: inline-block;
	color: #fff
}

.cur .share {
	float: right;
	background: url(../images/icon_share.png) right center no-repeat;
	padding-right: 25px;
	cursor: pointer;
	position: relative
}
.cur .share .bshare-custom{
	position: absolute;
	right: 60px;
	top: 12px;
	width: 170px;
	-webkit-transition: .3s;
	transition: .3s;
	visibility: hidden;
	opacity: 0;
	-ms-filter: 'alpha(opacity= 0)';
	filter: alpha(opacity=0);
	padding-left: 50px;
}
.jiathis_style_32x32 {
	position: absolute;
	right: 60px;
	padding-left: 50px;
	top: 0;
	width: 170px;
	-webkit-transition: .3s;
	transition: .3s;
	visibility: hidden;
	opacity: 0;
	-ms-filter: 'alpha(opacity= 0)';
	filter: alpha(opacity=0);
}

.cur .share:hover .jiathis_style_32x32 {
	visibility: visible;
	opacity: 1;
	-ms-filter: 'alpha(opacity= 100)';
	filter: alpha(opacity=100)
}
.cur .share:hover .bshare-custom {
	visibility: visible;
	opacity: 1;
	-ms-filter: 'alpha(opacity= 100)';
	filter: alpha(opacity=100)
}
.wd-list{}
.wd-list .wd-left{
    width: 67.375887%;
    float:  left;
    border-right: 1px solid #f1f1f1;
    padding-right: 40px;
    padding-bottom:  20px;
}
.wd-list .wd-right{
	width: 32.624113%;
	float:right;
	padding: 0 3% 0 3%;
}
.wd-list .wd-left li{
    padding: 23px 0;
    border-bottom: 1px solid #ededed;
}
.wd-list .wd-left li .chuizhi{
    -webkit-align-items: center;
    display: -webkit-flex;
    -webkit-justify-content: star;
}
.wd-list .wd-left li .chuizhi .imgbox{
    width: 80px;
    height: 80px;
    border-radius: 100%;
    overflow: hidden;
    float:  left;
}
.wd-list .wd-left li .chuizhi .imgbox a{}
.wd-list .wd-left li .chuizhi .imgbox a img{
    vertical-align: middle;
    width: 100%;
    min-height: 100%;
}
.wd-list .wd-left li .chuizhi .txtbox{
    width: calc(100% - 80px);
    padding-left: 15px;
    float:  right;
}
.wd-list .wd-left li .chuizhi .txtbox .txtbox_top{}
.wd-list .wd-left li .chuizhi .txtbox .txtbox_top h3{
    margin: 0;
}
.wd-list .wd-left li .chuizhi .txtbox .txtbox_top h3 a{}
.wd-list .wd-left li .chuizhi .txtbox .txtbox_top h3 a span{
    font-size: 14px;
    color: #888888;
    display: inline-block;
    overflow: hidden;
    line-height: 21px;
}
.wd-list .wd-left li .chuizhi .txtbox .txtbox_top p{
    color: #888888;
    font-size: 12px;
    margin: 0;
    padding-right: 20px;
}
.wd-list .wd-left li .chuizhi .txtbox .txtbox_top h3 a span:nth-child(1){text-overflow: ellipsis;white-space: nowrap;}
.wd-list .wd-left li .chuizhi .txtbox .txtbox_top h3 a span:nth-child(2){}
.wd-list .wd-left li .chuizhi .txtbox .txtbox_top h3 a span:nth-child(3){
    font-size: 16px;
    color: #444444;
    padding-left: 10px;
    width: 235px;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.wd-list .wd-left li .chuizhi .txtbox .txtbox_bottom{
    overflow: hidden;
    padding-top: 5px;
    color: #888888;
    font-size: 14px;
    margin-top: 0;
}
.wd-list .wd-right .Online-designer{
	
border-top:  0;
	
margin-top:  0;
}
.wd-list .wd-right .Online-designer:before{
	display:none;
}
.huid_sou{width: 597px;margin:40px auto;}
.huid_sou .huid_sou_left{border: 1px solid #E74A45;width:497px;background:url(../images/bg6.jpg) no-repeat 3% 57%;padding-left:40px;}
.huid_sou .huid_sou_left .huid_sou_left_nei{width:100%;line-height:42px;font-size:14px;border:  0;}
.huid_sou .huid_sou_right{ width:100px}
.huid_sou .huid_sou_right .huid_sou_right_nei{line-height:44px;font-size:15px;color:#fff;width:100%;background: #E74A45;cursor:pointer;border:  0;}


.tiw_top{padding: 30px 25px;position: relative;background:#fff;border-top: 1px solid #f1f1f1;}
.tiw_top:before{ content: ""; background: url(../images/bn1.png) no-repeat 50% 50%; width: 36px; height: 34px; display: inline-block; position: absolute; left: 10px; top: 0;}
.tiw_top_title h1{font-size:22px;color:#333333;font-weight:bolder;}
.tiw_top .tiw_top_title{ padding-bottom: 20px; padding-left: 17px;}
.tiw_top .tiw_top_title dl dd{ font-size: 22px; color: #333333; font-weight: bolder; padding-bottom: 15px;}
.tiw_top .tiw_top_title dl dt{ font-size: 12px; color: #9399a7; line-height: 38px;}
.tiw_top .tiw_top_title dl dt div:nth-child(1){ margin-right: 10px;}
.tiw_top .tiw_top_title p{ color: #888888; font-size: 12px;}
.tiw_top .tiw_top_title p span{ padding-right: 20px;}
.tiw_top .tiw_top_title .top_title_nei{ color: #888888; font-size: 14px; padding: 25px 0px;}
.tiw_top .tiw_top_title .top_title_nei span{ color: #333333;}
.tiw_top .tiw_top_title a{ font-size: 14px; color: #6f0706; padding-top: 15px; display: inline-block;}
.tiw_top .tiw_top_title a .fa-caret-down{ padding-left: 5px; color: #996500; font-size: 12px;}
.tiw_top .tiw_top_wne{ background: #f6f6f6; padding: 13px 17px; display:none;}
.tiw_top .tiw_top_wne p{ color: #666666; font-size: 15px;}
.tiw_top .tiw_top_wne .top_wne_nei{ width: 100%; height: 110px; padding-left: 15px; padding-top: 15px; border: 1px solid #EEEEEE; margin-top: 15px;}
.tiw_top .tiw_top_wne .top_wne_bottom{ padding-top: 10px;}
.tiw_top .tiw_top_wne .top_wne_bottom .wne_bottom_left{ color: #bbbbbb; cursor: pointer;}
.tiw_top .tiw_top_wne .top_wne_bottom .wne_bottom_left i{ padding-right: 5px;}
.tiw_top .tiw_top_wne .top_wne_bottom .wne_bottom_right{ line-height: 28px;}
.tiw_top .tiw_top_wne .top_wne_bottom .wne_bottom_right dd{ font-size: 13px ;color: #888888; padding-right: 10px;}
.tiw_top .tiw_top_wne .top_wne_bottom .wne_bottom_right dd span{ color: #fe552e;}
.tiw_top .tiw_top_wne .top_wne_bottom .wne_bottom_right dt{ width: 78px;}
.tiw_top .tiw_top_wne .top_wne_bottom .wne_bottom_right dt .bottom_right_nei{ height: 28px; line-height: 28px; background: #0cb467; text-align: center; color: #fff; font-size: 13px; width: 100%; cursor: pointer;}

.tiw_bottom{padding: 30px 40px;position: relative;margin-top: 15px;background:#fff;border-top: 1px solid #f1f1f1;}
.tiw_bottom:before{ content: ""; background: url(../images/bn2.png) no-repeat 50% 50%; width: 32px; height: 29px; display: inline-block; position: absolute; left: 10px; top: 0;}
.tiw_bottom .tiw_bottom_title{ font-size: 18px; color: #333333; padding-bottom: 25px;}
.tiw_bottom .tiw_bottom_title span{ color: #ffab24;}
.tiw_bottom .tiw_bottom_wen .bottom_wen_xun .wen_xun_top .xun_top_left dd{ width: 54px; height: 54px; border-radius: 100%; overflow: hidden;}
.tiw_bottom .tiw_bottom_wen .bottom_wen_xun{border-top: 1px dashed #dcdcdc;padding: 30px 0px;}
.tiw_bottom .tiw_bottom_wen .bottom_wen_xun:last-child{ padding-bottom: 0px;}
.tiw_bottom .tiw_bottom_wen .bottom_wen_xun .wen_xun_top .xun_top_left dd img{ width: 100%; min-height: 100%;}
.tiw_bottom .tiw_bottom_wen .bottom_wen_xun .wen_xun_top .xun_top_left dt{ padding-left: 10px;}
.tiw_bottom .tiw_bottom_wen .bottom_wen_xun .wen_xun_top .xun_top_left dt p{ font-size: 16px; color: #444444; padding-bottom: 5px;}
.tiw_bottom .tiw_bottom_wen .bottom_wen_xun .wen_xun_top .xun_top_left dt div{ font-size: 14px; color: #888888;}
.tiw_bottom .tiw_bottom_wen .bottom_wen_xun .wen_xun_top .xun_top_right span{ font-size: 14px; color: #888888;}
.tiw_bottom .tiw_bottom_wen .bottom_wen_xun .wen_xun_top .xun_top_right span:nth-child(1){ padding-right: 5px;}
.tiw_bottom .tiw_bottom_wen .bottom_wen_xun .wen_xun_nei{ color: #444444; font-size: 16px; line-height: 30px; padding-top: 10px;}
.tiw_bottom .tiw_bottom_wen .bottom_wen_xun .wen_xun_bottom{ width: 85px; line-height: 30px; line-height: 30px; border-radius: 100px; font-size: 12px; color: #444444; cursor: pointer; margin-top: 15px;}
.tiw_bottom .tiw_bottom_wen .bottom_wen_xun .wen_xun_bottom span:nth-child(1){ padding-right:10px}

.tiw_bottom_jia{ background: #fff url(../images/jincia.png) no-repeat 95% 13%;}
.tiw_bottom_jia:before{background: url(../images/bg7.jpg) no-repeat 50% 50% !important;}

.tiw_di{  margin-top:10px; background:#fff}
.tiw_di .tiw_di_title{ font-size:18px; color:#2a2a2a; border-bottom:1px solid #ededed; padding:15px 30px}
.tiw_di .tiw_di_body{ padding:20px 30px;}
.tiw_di .tiw_di_body .di_body_xun{width:100%;display:inline-block;padding-bottom: 15px;color:#666;}
.tiw_di .tiw_di_body .di_body_xun:last-child{ padding-bottom:0px}
.tiw_di .tiw_di_body .body_xun_right span{ font-size:12px}
.tiw_di .tiw_di_body .body_xun_right span:nth-child(1){color: #E74A45;padding-right:25px;}
.customization .custommain {
		margin-top: 30px;
	}
	.customization li {
		float: left;
		width: 31.6666%;
		height: 335px;
		font-size: 14px;
		line-height: 30px;
		text-align: center;
		margin-right: 2.5%;
		margin-bottom: 55px;
		border-radius: 10px;
		transition: all 300ms;
		/* cursor: pointer; */
		overflow: hidden;
		border: 1px solid #f2f2f2;
	}
	.customization .boxs {
		display: table;
		color: #7d7c7b;
		width: 100%; height: 100%;
		transition: all 300ms;
	}
	.customization .boxs > div {
		display: table-cell;
		vertical-align: middle;
	}
	.customization .icon {
		display: block;
	    height: 120px;
	    background-repeat: no-repeat;
	    background-position: center;
	}
	.customization .CNTitle {
		font-size: 16px;
		margin-top: 20px;
	}
	.customization .ENTitle {
		color: #b8b7b7;
	}
	.customization button {
		display: block;
		width: 100px;
		height: 30px;
		color: #fff;
		margin: 20px auto 0;
		border-radius: 15px;
		border: 1px solid #fff;
		background:  none;
		cursor:  pointer;
	}
	.customization li:hover {
		color: #fff;
		background-color: #E74A45;
	}
	.customization li:hover .ENTitle {
		opacity: 0.6;
	}
	.customization li:hover .CNTitle {
		margin-top: 80px;
	}
	.customization li:hover .boxs {
		margin-top: -175px;
	}
	.customization li:nth-child(3n) {margin-right: 0;}
	.customization li:hover .CNTitle, .customization li:hover .ENTitle {color: #fff;}
 	.customization li:nth-child(1) .icon { background-image: url(../images/customization_1.png) }
	.customization li:nth-child(2) .icon { background-image: url(../images/customization_2.png) }
	.customization li:nth-child(3) .icon { background-image: url(../images/customization_3.png) }
	.customization li:nth-child(4) .icon { background-image: url(../images/customization_4.png) }
	.customization li:nth-child(5) .icon { background-image: url(../images/customization_5.png) }
	.customization li:nth-child(6) .icon { background-image: url(../images/customization_6.png) }
	.customization li:nth-child(7) .icon { background-image: url(../images/customization_7.png) }
	.customization li:nth-child(8) .icon { background-image: url(../images/customization_8.png) }
	.customization li:nth-child(9) .icon { background-image: url(../images/customization_9.png) }
	.bsBox{
		height: 256px!important;
		width: 232px!important;
	}
	.border-bottom {
	border-bottom: 1px solid #f7f7f7;
	}
@media screen and (max-width: 1440px){
	.block2 .imgbox{
    width: 440px;
}
	.block2 .txtbox{
    width: calc(100% - 440px);
}
.block2 .txtbox_top .box2{
	margin: 0 0 0 5.6%;
}
.block2 .txtbox_top .box1{
	margin: 0 0 0 5.6%;
}
.block3{height: auto;padding-bottom: 195px;margin-top: 280px;}
.honor .w_w{width: 90%;}
.dl_design .txtbox{
	padding-top: 30px;
}
}
@media screen and (max-width: 1300px){
	/*.quotes-box{display: none !important;}*/
	.fd-l{width: auto;}
	.fd-r{width: 160px;}
	.fd-r .qr-box{display: none;}
	/*.fd-copy a,
	.fd-nav{display: none;}*/
	.fd-copy{font-size: 12px;}
	.friend-link{padding: 20px 0;}
	.friend-link .link{margin-bottom: 10px;}
	.list-solo2 li h4{font-size: 12px;}
	.fd-nav .wp{max-width: 1000px;}

	.focus .con p{
		font-size: 28px;
	}
	.focus .con h3{
		font-size: 38px;
	}
	.focus .con h4{
		font-size: 18px;
	}
}
@media screen and (max-width: 1240px){
	.list-solo{padding-bottom: 60px;}
	.products-list{margin: 20px 0 40px;}
	.index-more{padding: 40px 0 60px;}
	.news_main{padding-bottom: 60px;}
}
@media screen and (max-width: 1214px){
	.quotes-box .bd .s1{display: none;}
	.quotes-box .bd .wp{max-width: 750px;}
	.quotes-box .bd .s2{padding-left: 20px;padding-right: 100px;width: 416px;}
	.quotes-box .bd .s3{width: 328px;}
	.g-form .wrap1{width: 100%;}
	.company-guide{display: none;}
	.reserve-form-wrap{width: 100%;padding: 0;}
	.form-item.form-item0,.form-item.form-item3 {
		width: 40%;
		height: 50px;
	}
	.form-item.form-item1{
		width: calc(100% - 40% - 130px);
	}
}
@media screen and (max-width: 1024px){
	.customization li,.customization li:nth-child(3n) {width: 48%;margin: 1%;height: 272px;}
	.design_px_list{margin:0;}
	.design_px_list li{
    width: 33.33333%;
    margin-bottom: 20px;
    margin-left: 0;
    padding: 0 10px;
}
.design_px_list li img{width:100%;}
.design_px_list li .text{position:relative;margin:  0;top:  0;left:  0;width: 100%;padding: 16px 0;}
	.dl_design_systdiv .right,.dl_design_systdiv .right img{width: 100%;margin: 0;}
	.dl_design_systdiv .left{width: 100%;margin: 0;}
	.icon_title_font{font: 16px/25px '微软雅黑';}
	.list-solo li p,
	.list-solo li h4{font-size: 12px;}
	.list-1 li{
		padding: 0 10px;
		/* margin-bottom: 50px; */
	}
	.quotes-box .hd img{
		display: none;
	}
	.block2 .imgbox{
		width: 300px;
	}
		.block2 .txtbox{
		width: calc(100% - 300px);
	}
	.block2 .txtbox_top .box2{
		margin: 0 0 0 5.6%;
	}
	.block2 .txtbox_top .box1{
		margin: 0 0 0 5.6%;
	}
	.box2 p{line-height: 1.4em;}
	.block2 .txtbox_top .box1 .p{display:none;}
	.box2 h3{display:none;}
	.block3 .block3left{
		width: 100%;
	}
	.block3right{
		width: 100%;
		padding-top: 160px;
	}
	.block3 .box1{position: absolute;top: 0;}
	.blockbox .l{
    top: 420px;
}
.block3right .bd li img{width:100%;}
.block3 .box2{
	padding: 10px 0 20px 0;
}
.block3{margin-top: 180px;}
.slick-arrow{
    left: -43px;
}
.slick-arrow.slick-next{
    right: -43px;
}
.work-text{
	padding-top: 38px;
	padding-left: 40px;
}
.work-text p{
	margin-top: 16px;
}
.zdlist li{
	width: 33.3333%;
	padding: 5px;
}
.zdlist li.even{
	margin:0;
}
.zdlist li .num{
	display:none;
}
.zdlist{
    margin:  0;
}
.zdlist:after{
	display:none;
}
.yslist li .infor{
	height: 220px;
}
.yslist li .infor .txt{
	
line-height: 2em;
}
.dl_design .txtbox{
    padding-top: 10px;
    padding-right: 10px;
    width: 65%;
}
.dl_design .imgbox{
    width: 35%;
}
}
@media screen and (max-width: 1000px){
	.fd-copy a, .fd-nav{display: none;}
	.fd-nav{display: none;}
	.list-solo{padding-bottom: 45px;}
	.index-more{padding: 40px 0 45px;}
	.news_main{padding-bottom: 45px;}
}
@media only screen and (max-width:991px) {
	.products-list .item {
		width: -moz-calc(33.3333% - 20px);
		width: -webkit-calc(33.3333% - 20px);
		width: calc(33.3333% - 20px);
	}
}
@media only screen and (max-width: 768px){
	.quotes-box .s2 li .dqbox{
	width: 50%;
	float:  left;
	padding-right: 5px;
	}
	.quotes-box .s2 li .bzbox{
		width: 50%;
		float:  right;
		padding-left: 5px;
	}
	.quotes-box .s2 li .dqbox select{
		width: 100%;
	}
	.quotes-box .s2 li .bzbox select{
		float:  right;
		width: 100%;
	}
	.honor{margin-top: 0px;}
	.part_honor .imgbox{
		width: 100%;
    	margin-right: 0;
	}
	.part_honor .imgbox img{width:100%;}
	.products-list .item .main{
		display: none;
	}
	.list-1 li{
		width: 100%;
		margin-bottom: 20px;
		padding: 0 20px;
	}
	.faItem{text-align:  center;}
	.faItem img{
    display:  block;
    margin: 10px auto 0;
}
.faItem .txt{
	text-align:center;
}
.faItem .txt .tit{margin-top:10px;font-size: 16px;}
.quotes-box .hd h3{
	font-size: 20px;
}
.quotes-box{bottom: -576px;}
.quotes-box .s2 li.last{display: block;}
.cal-btn{display: none;}
.quotes-box .bd .s2{width: 100%;height: 354px;}
.quotes-box .bd .s3{display: none;}
.quotes-box .bd .con-m{display: block;}
.quotes-box .bd .con-m img{width: 8%;display: none;}
.quotes-box .bd{height: 490px;}
/*.quotes-box.show-v1{bottom: -576px;}*/
/*.quotes-box.show-v1{top: 100%;bottom: auto;}*/
.quotes-box .s2 li.last{display: block;}
.cal-btn{display: none;}


.quotes-box.show-v1{bottom: -490px;}


.quotes-box{bottom: -590px;}
.quotes-box .bd .wp{padding: 0 10px;}
.block2 .imgbox{
	width: 100%;
	height: 420px;
}
.block2 .txtbox{
	width: 100%;
	height:  auto;
}
.block2 .txtbox_top .box2{
	margin: 0 0 0 5.6%;
}
.block2 .txtbox_top .box1{
	margin: 0 0 0 5.6%;
}
.box2 p{line-height: 1.4em;}
.block2 .txtbox_top .box1 .p{display:none;}
.box2 h3{display:none;}
.block2{height: auto;margin-top: 20px;}
.block2 .imgbox .bd li{
	height: 420px;
	background-size: 100%!important;
}
.block2 .blockbox{height:auto;}
.block2 .txtbox_bottom{margin-left:0;height:  auto;}
.block2 .txtbox_bottom ul{
	padding-top: 0;
}
.block2 .imgbox .bd li .imgbox1{
	padding-top: 20px;
}
.block2 .imgbox .bd li .txtbox1{
	margin-top: 20px;
}
.block2 .imgbox .hd{
    bottom: 35px;
}
.block2 .imgbox .hd ul{
    padding-left: 8%;
}
.block2 .txtbox_top{
    height: auto;
    padding-bottom: 30px;
}
.block4 .blockbox .hd .intro{
	padding: 25px;
	width: 270px;
}
.block4 .blockbox .hd .intro h2{
	margin-bottom: 30px;
	margin-top: 0px;
}
.block4 .blockbox .hd{
    top: 20px;
    left: 30px;
    width: 270px;
    height: 520px;
}
.block4 .blockbox .hd .intro2{width:270px;}
.jiagou{
    margin-top: 370px;
}
.block3{margin-top: 0;overflow:  hidden;top: -75px;padding-bottom: 135px;}
.block3right{
	/* padding-top: 10px; */
	/* overflow:  hidden; */
}
.block3right .hd{/* padding-top: 160px; */}
.blockbox .l{
    top: 420px;
}
.block3right .hoverblock2{
	/* bottom: -121px; */
}
.txt4,.jiagou-img{display:none;}
.txt4_wap,.jiagou-img_wap{display:block;}
.slick-arrow{
    left: -23px;
}
.slick-arrow.slick-next{
    right: -23px;
}
.work-flow-list li{
	width: 32.333%;
	margin-bottom: 1%;
}
.serviceteam-list li{width: 32.3333%;margin-bottom: 1%;height: 230px;padding-top: 20px;}
.imgbox-text{
	padding-top: 14px;
}
.work-text{
	padding-top: 18px;
    padding-left: 40px;
}
.zxdlist li{
	width: 50%;
}
.zdlist li{
	width: 50%;
}
.yslist li{width: 100%}
.ladder .imgbox{
	width: 100%;
	padding: 40px;
}
.ladder .txtbox{
	width: 100%;
}
.dl_design .txtbox{
	width:100%;
}
.dl_design .imgbox{
	width:100%;
}
.products-list .item {
	width: -moz-calc(50% - 20px);
	width: -webkit-calc(50% - 20px);
	width: calc(50% - 20px)
}

.products-list .item .main {
	display: none
}
.products-list{
	margin-right: -20px;
	margin-bottom: 40px;
}
}
@media(max-width:640px){
	.design_px_list li{width: 100%;background:  #F1F1F1;padding: 0;}
	.posR img{display:none;}
	.design_px_list1 li{width: 100%;margin: 0;margin-bottom: 10px;}
	.line_dash{
    margin: 15px 0;
}
	.design_px_list1 li img{width:100%;}
	.float-bar{display: none;}
	.list-solo li .ico{width: 60px;height: 60px;border-width: 2px;margin-bottom: 10px;}
	.list-solo li .ico img{height: 25px;}
	.list-solo li i{
		-webkit-background-size: auto 50%;
		background-size: auto 50%;
		line-height: 60px;
	}
	/*.pop-img, .slider3 .item, .slider3 .slick-track, .slider3 .slick-list, .slider3 .bg, .slider3,*/
	/*.pop-box{width: 100%;height: 100%;}*/
	/*.pop-iframe iframe{width: 100vw; height: 100vh;}*/
	.list-solo{text-align: center;}
	.list-solo{padding-bottom: 50px;}
	.list-solo li h4{font-size: 12px;display:  block;width: 100%;word-wrap: break-word;}
	
	.list-pros li h4{font-size: 18px;}
	.foot_bz{display:none;}
	.quotes-box .s2 select{width: 48%;margin-right: 1%;}
	.quotes-box .bd .s2{padding-right: 0;}
	.quotes-box .hd h3{font-size: 16px;margin-left: 0;margin-right: 0;text-align: center;height: 48px;
		line-height: 48px;}
	.quotes-box .hd .m-show{display: block;}
	.quotes-box .hd .pc-show{display: none;}
	.quotes-box .hd .open{position: absolute;left: -26px;right: auto;top: 0px;display: none;}
	.quotes-box .hd{background: #e74a45;color: #fff;}
	/*.quotes-box .hd .open{display: none;}*/
	.quotes-box .hd .wp{width: 100%;padding: 0 10px;}
	.quotes-box.show-v1{/*bottom: -520px;*//* bottom: -94% !important;*/ height: 100%;vertical-align: middle;background: #fff;}
	.quotes-box .bd{background: none;height: 100%;}
	.quotes-box .bd .s2{border-bottom: 1px solid #e8e7e7;padding-left: 10px;padding-right: 10px;}
	.x-btn3{bottom: 10px;right: -20px;}
	/*.quotes-box .hd{display: none;}*/
	.quotes-box.show-v1{margin-top: -48px;bottom: auto;top: 100%;}
	.quotes-box.show-me{top: 0 !important;bottom: auto !important;margin-top: 0 !important;z-index: 999999999;}
	.x-btn3{bottom: 10px;right: 5px;}
	.fd-copy .s3{display: none;}
	.link{display: none;}
	.block2 .imgbox .hd ul{
    padding-left: 12%;
}
.block2 .txtbox_bottom li{
	width:50%;
	padding-bottom: 17px;
}
.block2 .imgbox .bd li .lileft{
    width: 100%;
    height:  400px;
}
.block2 .imgbox{height:400px;}
.block2 .imgbox .bd li{
	height: 400px;
}
.block2 .imgbox .bd li .txtbox1{display: none;}
.block3right .bd{height: 220px;}
.slick-arrow{
    left: -13px;
}
.slick-arrow.slick-next{
    right: -13px;
}
.form-item.form-item0, .form-item.form-item3,.form-item.form-item1{
	width: 100%;
}
.g-form{display: none;}
.visit-list li .imgbox{
	width: 100%;
}
.imgbox-text{
	width:100%;
	padding-left: 15px;
}
.service_list li{
	width: 49%;
}
.service_list{
	margin-top: 28px;
	margin-bottom: 28px;
}
.work_list li{
	width: 99%;
}
.work-text{
	padding-top: 5%;
	padding-left: 5%;
}
.work-flow-list li{
	width: 49%;
}
.serviceteam-list li{
	width: 49%;
}

.zjian .zjian_main ul li .zjian_h{
    width: 100%;
    float:  left;
    height: 100%;
    display: table;
}
.zjian .zjian_main ul li .zjian_h p{
    font-size: 14px;
    background: #efefef;
    border: 2px solid #fff;
    padding: 8px 25px;
    height: 100%;
    display:  block;
    width:  100%;
    margin: 0;
    display: table-cell;
    vertical-align: middle;
    text-align:  center;
}
.zjian .zjian_main ul li .zjian_p{
    width: 100%;
    float:  left;
    display: table;
    height: 100%;
}
.zjian .zjian_main ul li .zjian_p p{
    font-size: 14px;
    background: #f8f8f8;
    border: 2px solid #fff;
    padding: 8px 25px;
    display:  block;
    height:  100%;
    margin: 0;
    display: table-cell;
    vertical-align: middle;
}
.zjian .zjian_main ul li{
	height: auto;
}
.dl_design .txtbox .step{
	display: none;
}
.dl_design .txtbox .step2{display:block;}
.sub-nv a{margin-top: 13px;}
.focus .con p{font-size: 14px;}
.focus .con h3{font-size: 23px;}
.focus .con h4{font-size: 16px;}
.more1{width: 120px;font-size: 14px;height: 40px;line-height: 40px;}
.f-nav i{width: 10px;height: 10px;}
.arrow-down i{
	-webkit-background-size: 30px;
	background-size: 30px;
}
#ban-in{height: auto;padding-top: 80%;}
#ban-in .txt{background: none;margin-top: -10px;}
#ban-in .txt span{font-size: 20px;}
#ban-in .txt b{font-size: 30px;}
.cur{margin: 0 -15px;background-color: #e74a45;}
.customization li,.customization li:nth-child(3n) {width: 96%;margin: 2%;}
.tiw_top,.tiw_bottom{padding: 30px 0px;}
.tiw_top .tiw_top_title{padding-left: 0;}
.tiw_top_title h1{
    margin: 0;
    margin-top: 20px;
}
.tiw_top_title .fr{float:left;}
.tiw_top .tiw_top_title dl dd{
    padding-bottom: 5px;
}
.tiw_top .tiw_top_title .top_title_nei{
    padding: 5px 0px;
}
.tiw_top .tiw_top_title .case-info-label a{
    padding: 5px 8px;
}
.tiw_top .case-info-label a+a{
    margin-left: 5px;
}
.tiw_di .tiw_di_body{
	padding: 15px 0px;
}
.body_xun_right{display: none;}
.tiw_di .tiw_di_title{padding: 15px 0px;}
.huid_sou{width: 100%;margin: 20px auto;}
.huid_sou .huid_sou_left{width: 80%;}
.huid_sou .huid_sou_right{width: 20%;}
.wd-list .wd-left li .chuizhi .txtbox .txtbox_top p{
	float: left;
}
.wd-list .wd-left li .chuizhi .txtbox .txtbox_top h3 a span:nth-child(3){
	padding-left: 0px;
}
.huid_sou .huid_sou_right .huid_sou_right_nei{font-size: 14px;}
}